Project

General

Profile

Download (335 Bytes) Statistics
| Branch: | Tag: | Revision:
class KeyPair < ApplicationRecord
audited :except => :secret, :associated_with => :compute_resource
belongs_to :compute_resource
validates_lengths_from_database
validates :name, :secret, :presence => true
validates :compute_resource_id, :presence => true, :uniqueness => true

def skip_strip_attrs
['secret']
end
end
(30-30/70)