Using Ember-Simple-Auth in an Ember-Cli app, I'm trying to require authentication on pretty much every route in my application. I didn't want to use the AuthenticatedRouteMixin
on every route, because I don't want to have to define every route. So I added the mixin to ApplicationRoute.
However, this causes an infinite loop, because obviously the login route extends from the same ApplicationRoute and therefore now protected.
How do I include this mixin in every route except LoginRoute?