summaryrefslogtreecommitdiff
path: root/app/models/protected_tag.rb
blob: f38109c0e5275bdf55f7da13f1d4368f6cab0697 (plain)
1
2
3
4
5
6
7
8
9
10
class ProtectedTag < ActiveRecord::Base
  include Gitlab::ShellAdapter
  include ProtectedRef

  protected_ref_access_levels :create

  def self.protected?(project, ref_name)
    self.matching(ref_name, protected_refs: project.protected_tags).present?
  end
end