summaryrefslogtreecommitdiff
path: root/app/models/environment.rb
blob: e5506bcf75c68b4fd74b3f4eb2a8e679dabe4098 (plain)
1
2
3
4
5
6
7
8
9
10
11
class Environment < ActiveRecord::Base
  belongs_to :service
  has_many :failures
  before_create :create_api_key

  private

  def create_api_key
    self.api_key = SecureRandom.uuid
  end
end