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

protected_tag_access.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9b7d31a6fd5c11356dc90aede176f3edc03c3bba (plain)
1
2
3
4
5
6
7
8
9
10
module ProtectedTagAccess
  extend ActiveSupport::Concern

  included do
    include ProtectedRefAccess

    belongs_to :protected_tag
    delegate :project, to: :protected_tag
  end
end