debian-mirror-gitlab/app/models/protected_tag.rb
2019-02-15 15:39:39 +05:30

15 lines
348 B
Ruby

# 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