mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 07:53:49 +08:00
FIX: Move check to right serializer.
This commit is contained in:
@ -1,10 +1,6 @@
|
||||
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])
|
||||
|
@ -1,3 +1,7 @@
|
||||
class GroupPostUserSerializer < BasicUserSerializer
|
||||
attributes :title, :name
|
||||
|
||||
def include_name?
|
||||
SiteSetting.enable_names?
|
||||
end
|
||||
end
|
||||
|
Reference in New Issue
Block a user