We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b82f04 commit e13b9e7Copy full SHA for e13b9e7
guides/upgrade-to-v3.md
@@ -21,7 +21,7 @@ Defined in [`AuthenticatedRouteMixin`](http://ember-simple-auth.com/api/classes/
21
import AuthenticatedRouteMixin from 'ember-simple-auth/mixins/authenticated-route-mixin';
22
23
export default Route.extend(AuthenticatedRouteMixin, {
24
- routeAfterAuthentication: 'signin',
+ authenticationRoute: 'signin',
25
});
26
```
27
@@ -49,7 +49,7 @@ Defined in [`UnauthenticatedRouteMixin`](http://ember-simple-auth.com/api/classe
49
import UnauthenticatedRouteMixin from 'ember-simple-auth/mixins/unauthenticated-route-mixin';
50
51
export default Route.extend(UnauthenticatedRouteMixin, {
52
- routeAfterAuthentication: 'search',
+ routeIfAlreadyAuthenticated: 'search',
53
54
55
0 commit comments