I am currently struggling to get on board with Ember.js and I bumped into an issue with my current routes design, they have nesting URLs, however there are no nesting templates, so their configuration looks like this:
this.resource('customer', { path: '/Customer/:id' });
this.resource('employees', { path: '/Customer/:id/Employees' });
Now, at Customers/:id (after submit action) a new Customer instance is created in DS.store and a set of empty Employee objects are added, as well, into the DS.store.
The problem is transitioning from 'customer' to 'employees', the 'employees' template is not actually rendered, 'customer' template is maintained. The last log message is "Attempting transitioning to employees'.
Could you please give me a hint what might be the problem?