mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
51e1c0b6ce
This reverts commit 793f933b6b
.
21 lines
372 B
Ruby
21 lines
372 B
Ruby
class BasicUserSerializer < ApplicationSerializer
|
|
attributes :id, :username, :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
|
|
user&.avatar_template
|
|
end
|
|
end
|
|
|
|
def user
|
|
object[:user] || object
|
|
end
|
|
|
|
end
|