discourse/app/serializers/hidden_profile_serializer.rb
Robin Ward a566ed42ae FEATURE: Option to disable user presence and profile
This allows users who are privacy conscious to disable the presence
features of the forum as well as their public profile.
2018-10-10 17:34:33 -04:00

8 lines
124 B
Ruby

class HiddenProfileSerializer < BasicUserSerializer
attributes :profile_hidden?
def profile_hidden?
true
end
end