mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 11:58:27 +00:00
51e1c0b6ce
This reverts commit 793f933b6b28862dfb7995ef938da4029bc2e10c.
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
|