summaryrefslogtreecommitdiff
path: root/app/models/ci/variable.rb
blob: 51389fb82bffd67d44eaa6ade8cfe01f494c8709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module Ci
  class Variable < ActiveRecord::Base
    extend Gitlab::Ci::Model
    include HasVariable
    include Presentable

    belongs_to :project

    validates :key, uniqueness: {
      scope: [:project_id, :environment_scope],
      message: "(%{value}) has already been taken"
    }

    scope :unprotected, -> { where(protected: false) }

    def to_hash
      { key: key, value: value, public: false }
    end
  end
end