Class: ProtectedTag

Inherits:
ApplicationRecord show all
Includes:
EachBatch, ProtectedRef
Defined in:
app/models/protected_tag.rb

Defined Under Namespace

Classes: CreateAccessLevel

Constant Summary

Constants inherited from ApplicationRecord

ApplicationRecord::MAX_PLUCK

Constants included from ResetOnUnionError

ResetOnUnionError::MAX_RESET_PERIOD

Instance Attribute Summary

Attributes included from Importable

#imported, #importing

Class Method Summary collapse

Methods included from ProtectedRef

#commit

Methods inherited from ApplicationRecord

cached_column_list, #create_or_load_association, declarative_enum, default_select_columns, id_in, id_not_in, iid_in, pluck_primary_key, primary_key_in, #readable_by?, safe_ensure_unique, safe_find_or_create_by, safe_find_or_create_by!, #to_ability_name, underscore, where_exists, where_not_exists, with_fast_read_statement_timeout, without_order

Methods included from SensitiveSerializableHash

#serializable_hash

Class Method Details

.protected?(project, ref_name) ⇒ Boolean

Returns:

  • (Boolean)


12
13
14
15
16
17
18
19
20
# File 'app/models/protected_tag.rb', line 12

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