Module: AttrJson::Model::CocoonCompat
- Extended by:
- ActiveSupport::Concern
- Defined in:
- lib/attr_json/model/cocoon_compat.rb
Overview
Meant for mix-in in a AttrJson::Model class, defines some methods that cocoon insists upon, even though the implementation doesn't really matter for getting cocoon to work with our Models as nested models in forms with cocoon -- the methods just need to be there.
Instance Method Summary collapse
- #marked_for_destruction? ⇒ Boolean
-
#new_record? ⇒ Boolean
cocoon insists on asking, we don't know the answer, we'll just say 'no' PR to cocoon to not insist on this?.
Instance Method Details
#marked_for_destruction? ⇒ Boolean
22 23 24 |
# File 'lib/attr_json/model/cocoon_compat.rb', line 22 def marked_for_destruction? nil end |
#new_record? ⇒ Boolean
cocoon insists on asking, we don't know the answer, we'll just say 'no' PR to cocoon to not insist on this?
19 20 21 |
# File 'lib/attr_json/model/cocoon_compat.rb', line 19 def new_record? nil end |