Sha256: 599869f581ce2bcbd461116ac2bda0cfd03e40f7a238964724ccf506ead5b897
Contents?: true
Size: 402 Bytes
Versions: 48
Compression:
Stored size: 402 Bytes
Contents
class Mdm::ApiKey < ActiveRecord::Base # # Validators # validate :supports_api validates :token, :presence => true, :length => { :minimum => 8 } protected def supports_api license = License.get if license and not license.supports_api? errors[:license] = " - this product does not support API access" end end ActiveSupport.run_load_hooks(:mdm_api_key, self) end
Version data entries
48 entries across 48 versions & 1 rubygems