debian-mirror-gitlab/app/models/ci/group_variable.rb
2023-07-09 08:55:56 +05:30

41 lines
982 B
Ruby

# frozen_string_literal: true
module Ci
class GroupVariable < Ci::ApplicationRecord
include Ci::HasVariable
include Ci::Maskable
include Ci::RawVariable
include Limitable
include Presentable
prepend HasEnvironmentScope
belongs_to :group, class_name: "::Group"
alias_attribute :secret_value, :value
validates :key, uniqueness: {
scope: [:group_id, :environment_scope],
message: "(%{value}) has already been taken"
}
scope :unprotected, -> { where(protected: false) }
scope :by_environment_scope, -> (environment_scope) { where(environment_scope: environment_scope) }
scope :for_groups, ->(group_ids) { where(group_id: group_ids) }
self.limit_name = 'group_ci_variables'
self.limit_scope = :group
def audit_details
key
end
def group_name
group.name
end
def group_ci_cd_settings_path
Gitlab::Routing.url_helpers.group_settings_ci_cd_path(group)
end
end
end