debian-mirror-gitlab/app/models/protected_tag.rb
2019-07-07 11:18:12 +05:30

16 lines
347 B
Ruby

# frozen_string_literal: true
class ProtectedTag < ApplicationRecord
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