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: 38e71528f18f6fa36e326cf208bbd4b4710184f8 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class NoteUserEntity < UserEntity
  unexpose :web_url
end

NoteUserEntity.prepend_if_ee('EE::NoteUserEntity')