gitlab-org--gitlab-foss/app/models/concerns/protected_tag_access.rb

12 lines
188 B
Ruby

module ProtectedTagAccess
extend ActiveSupport::Concern
included do
include ProtectedRefAccess
belongs_to :protected_tag
delegate :project, to: :protected_tag
end
end