I need to set a controller property after the model hook. I can think of two ways to do this:
model
model(params) { return this.store.findRecord(\'user\
You don't need any of those code, because controller has access to model via this.model. In any controller's method you can just call this.get('model.profile'). In template you may use {{model.profile}}.
this.model
this.get('model.profile')
{{model.profile}}