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

13 lines
216 B
Ruby

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