I'm properly saving my data using
await this.model.save();
but after saving and it gets back the data it' doesn't run my setupController function that does this code to make sure the data can be edited in the admin. So the page breaks because the arrays aren't ember Arrays. Do I have turn this function into a helper function run this code below manually after every save ?
setupController(controller, model){
model.permissions = A(model.permissions.map(e => {
return new TrackedObject(e);
}))
model.users = A(model.users.map(e => {
return new TrackedObject(e);
}))
}
```