debian-mirror-gitlab/app/serializers/current_user_entity.rb
2018-12-13 13:39:08 +05:30

9 lines
279 B
Ruby

# frozen_string_literal: true
# Always use this entity when rendering data for current user
# for attributes that does not need to be visible to other users
# like user preferences.
class CurrentUserEntity < UserEntity
expose :user_preference, using: UserPreferenceEntity
end