7 lines
237 B
Ruby
7 lines
237 B
Ruby
# frozen_string_literal: true
|
|
|
|
class NoteUserEntity < UserEntity
|
|
expose :gitlab_employee?, as: :is_gitlab_employee, if: ->(user, options) { ::Feature.enabled?(:gitlab_employee_badge) && user.gitlab_employee? }
|
|
|
|
unexpose :web_url
|
|
end
|