summaryrefslogtreecommitdiff
path: root/app/models/concerns/protected_tag_access.rb
blob: ee65de24dd8aeec902134e6597422e8429bff8b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
module ProtectedTagAccess
  extend ActiveSupport::Concern

  included do
    include ProtectedRefAccess

    belongs_to :protected_tag

    delegate :project, to: :protected_tag
  end
end