mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:13:22 +08:00
21 lines
408 B
Ruby
21 lines
408 B
Ruby
class UserNameSerializer < ApplicationSerializer
|
|
attributes :id, :username, :name, :title, :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
|