I'm 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 it's like this
this.route('consultas', function() {
this.route('reservas');
}
The query template has some information I want to hide when I go to the booking template. How can I do this in Ember 2.0 or how do I know which route I am when calling my helper to do this?
I asked the same question in SOEN. If you would like to join the answers .