gitlab-org--gitlab-foss/app/models/protected_tag.rb

21 lines
512 B
Ruby

# frozen_string_literal: true
class ProtectedTag < ApplicationRecord
include ProtectedRef
validates :name, uniqueness: { scope: :project_id }
validates :project, presence: true
protected_ref_access_levels :create
def self.protected?(project, ref_name)
return false if ref_name.blank?
refs = Gitlab::SafeRequestStore.fetch("protected-tag:#{project.cache_key}:refs") do
project.protected_tags.select(:name)
end
self.matching(ref_name, protected_refs: refs).present?
end
end