0
I am using Ember 2 and things are complicated for those who have no Ember experience. I have the following routes
consultas\
consultas\reserva
And on my router.js is like this
this.route('consultas', function() {
this.route('reservas');
}
The query template has some information I want to hide when going to the booking template. How can I do this in Ember 2.0 or how do I know which route I am by calling my helper to do this?
I asked the same question on SOEN. If you want to follow the answers.