Class: Mdm::Profile
- Inherits:
-
ApplicationRecord
- Object
- ApplicationRecord
- Mdm::Profile
- Defined in:
- app/models/mdm/profile.rb
Overview
User settings.
Instance Attribute Summary collapse
-
#active ⇒ true, false
Whether this is the currently active profile.
-
#created_at ⇒ DateTime
When this profile was created.
-
#name ⇒ String
Name of this profile to distinguish it from other profiles.
-
#owner ⇒ '<system>', String
Owner of this profile.
-
#updated_at ⇒ DateTime
The last time this profile was updated.
Instance Method Summary collapse
-
#settings ⇒ Hash
Global settings.
Instance Attribute Details
#active ⇒ true, false
Whether this is the currently active profile.
|
# File 'app/models/mdm/profile.rb', line 7
|
#created_at ⇒ DateTime
When this profile was created.
|
# File 'app/models/mdm/profile.rb', line 13
|
#name ⇒ String
Name of this profile to distinguish it from other profiles.
|
# File 'app/models/mdm/profile.rb', line 18
|
#owner ⇒ '<system>', String
Owner of this profile.
|
# File 'app/models/mdm/profile.rb', line 23
|
#updated_at ⇒ DateTime
The last time this profile was updated.
|
# File 'app/models/mdm/profile.rb', line 29
|
Instance Method Details
#settings ⇒ Hash
Global settings.
41 |
# File 'app/models/mdm/profile.rb', line 41 serialize :settings, MetasploitDataModels::Base64Serializer.new |