I'm using the latest rev of ember-data and I have a typical situation where most of the models need to be managed by ember-data so when I do a commit on the store they sync up w/ the backend. In one particular case I have a model that is only used clientside (but I created this as a DS.Model because it has relationships with other ember-data models in the running app).
What can I mark on the model itself to make sure it never looks "dirty" or "new"
I tried doing something like this when the object is created but it's still being change tracked for some odd reason
App.Foo.createRecord({name: 'foo', loaded: true, new: false, dirty: false});