summaryrefslogtreecommitdiff
path: root/app/models/protected_tag.rb
blob: d28ebabfe49c6531b392639a3db608d3e1252bb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class ProtectedTag < ActiveRecord::Base
  include ProtectedRef

  validates :name, uniqueness: { scope: :project_id }

  protected_ref_access_levels :create

  def self.protected?(project, ref_name)
    refs = project.protected_tags.select(:name)

    self.matching(ref_name, protected_refs: refs).present?
  end
end