Class: RdeTemplate
- Inherits:
-
Sequel::Model
- Object
- Sequel::Model
- RdeTemplate
- Defined in:
- backend/app/model/rde_template.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.create_from_json(json, opts = {}) ⇒ Object
20 21 22 23 24 25 |
# File 'backend/app/model/rde_template.rb', line 20 def self.create_from_json(json, opts = {}) super(json, opts.merge('order' => JSON(json.order || []), 'visible' => JSON(json.visible || []), 'defaults' => JSON(json.defaults || {}) )) end |
.sequel_to_jsonmodel(objs, opts = {}) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 |
# File 'backend/app/model/rde_template.rb', line 8 def self.sequel_to_jsonmodel(objs, opts = {}) jsons = super jsons.zip(objs).each do |json, obj| json['order'] = ASUtils.json_parse(obj.order) json['visible'] = ASUtils.json_parse(obj.visible) json['defaults'] = ASUtils.json_parse(obj.defaults) end jsons end |
Instance Method Details
#update_from_json(json, opts = {}, apply_nested_records = true) ⇒ Object
28 29 30 31 32 33 |
# File 'backend/app/model/rde_template.rb', line 28 def update_from_json(json, opts = {}, apply_nested_records = true) super(json, opts.merge('order' => JSON(json.order || []), 'visible' => JSON(json.visible || []), 'defaults' => JSON(json.defaults || {}) )) end |