debian-mirror-gitlab/app/models/ci/group_variable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
702 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Ci
2021-10-27 15:23:28 +05:30
class GroupVariable < Ci::ApplicationRecord
2020-04-22 19:07:51 +05:30
include Ci::HasVariable
2017-09-10 17:25:29 +05:30
include Presentable
2020-04-22 19:07:51 +05:30
include Ci::Maskable
2021-04-17 20:07:23 +05:30
prepend HasEnvironmentScope
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
belongs_to :group, class_name: "::Group"
2017-09-10 17:25:29 +05:30
2018-05-09 12:01:36 +05:30
alias_attribute :secret_value, :value
2018-03-27 19:54:05 +05:30
validates :key, uniqueness: {
2021-04-17 20:07:23 +05:30
scope: [:group_id, :environment_scope],
2018-03-27 19:54:05 +05:30
message: "(%{value}) has already been taken"
}
2017-09-10 17:25:29 +05:30
scope :unprotected, -> { where(protected: false) }
2021-04-17 20:07:23 +05:30
scope :by_environment_scope, -> (environment_scope) { where(environment_scope: environment_scope) }
2022-05-07 20:08:51 +05:30
scope :for_groups, ->(group_ids) { where(group_id: group_ids) }
2022-08-13 15:12:31 +05:30
def audit_details
key
end
2017-09-10 17:25:29 +05:30
end
end