Pierre-Arnaud
Pierre-Arnaud
maybe using [JsonSerializable](http://php.net/manual/fr/jsonserializable.jsonserialize.php) in your entities you can ```implements JsonSerializable``` and define a ```public function jsonSerialize()``` that return the entity without the extra relashionship that cause the loop. something like...
you can have a look at the shadow of session as described in comment of this issue https://github.com/GroupTalent/epf/issues/22
is it something like that ? or i misunderstand the "actions up / bindings down" principle. app/components/todos-route/template.js ``` {{input type="checkbox" class='toggle-all' checked=allAreDone action="allAreDoneChange" on="change"}} ``` app/components/todos-route/component.js ``` allAreDone: false, actions:...
@stefanpenner is it good for a PR ? [checkbox-actions-up-bindings-down](https://github.com/c0urg3tt3/ember-cli-todos/commit/48127b2c72a39612da7d3a5b8d6446ae6abcb925)