Welcome to mirror list, hosted at ThFree Co, Russian Federation.

note_user_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8d30bbff5e4a5b02210fcf4bb2901f3b14b65f83 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class NoteUserEntity < UserEntity
  expose :gitlab_employee?, as: :is_gitlab_employee, if: ->(user, options) { user.gitlab_employee? }

  unexpose :web_url
end