summaryrefslogtreecommitdiff
path: root/app/models/concerns/protected_tag_access.rb
blob: 3f5696c0749a8b75680e26b7c3fc1c9870ec036a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module ProtectedTagAccess
  extend ActiveSupport::Concern
  include ProtectedRefAccess

  included do
    belongs_to :protected_tag

    delegate :project, to: :protected_tag
  end
end