This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/web_hook_user_serializer.rb

10 lines
162 B
Ruby

class WebHookUserSerializer < UserSerializer
# remove staff attributes
def staff_attributes(*attrs)
end
def include_email?
scope.is_admin?
end
end