mirror of
https://github.com/discourse/discourse.git
synced 2025-03-11 01:05:20 +08:00
21 lines
400 B
Ruby
21 lines
400 B
Ruby
![]() |
class UserNameSerializer < ApplicationSerializer
|
||
|
attributes :id, :username, :name, :uploaded_avatar_id, :avatar_template
|
||
|
|
||
|
def include_name?
|
||
|
SiteSetting.enable_names?
|
||
|
end
|
||
|
|
||
|
def avatar_template
|
||
|
if Hash === object
|
||
|
User.avatar_template(user[:username], user[:uploaded_avatar_id])
|
||
|
else
|
||
|
object.avatar_template
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def user
|
||
|
object[:user] || object
|
||
|
end
|
||
|
|
||
|
end
|