Class: Locomotive::Translation
- Inherits:
-
Object
- Object
- Locomotive::Translation
- Includes:
- Mongoid::Document
- Defined in:
- app/models/locomotive/translation.rb
Instance Method Summary collapse
-
#key ⇒ Object
validations ##.
-
#ordered ⇒ Object
scopes ##.
-
#site ⇒ Object
associations ##.
Instance Method Details
#key ⇒ Object
validations ##
6 |
# File 'app/models/locomotive/translation.rb', line 6 field :key |
#ordered ⇒ Object
scopes ##
17 |
# File 'app/models/locomotive/translation.rb', line 17 scope :ordered, order_by(key: :asc) |
#site ⇒ Object
associations ##
10 |
# File 'app/models/locomotive/translation.rb', line 10 belongs_to :site, class_name: 'Locomotive::Site', validate: false, autosave: false |