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

protected_tag.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bca5522759db835b8079b723cf1b24c6a14c1513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ProtectedTag < ActiveRecord::Base
  include Gitlab::ShellAdapter
  include ProtectedRef

  has_many :push_access_levels, dependent: :destroy

  validates :push_access_levels, length: { is: 1, message: "are restricted to a single instance per protected tag." }

  accepts_nested_attributes_for :push_access_levels

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