add explicit signin route

This commit is contained in:
Lisa P 2016-01-13 14:28:22 +01:00
parent ea79bb1625
commit a63188ae13
2 changed files with 16 additions and 0 deletions

View File

@ -74,6 +74,7 @@ Router.map(function() {
this.route('first_sync');
this.route('insufficient_oauth_permissions');
this.route('signin');
this.route('auth');
this.route('home');
this.route('home-pro', { path: '/home-pro' });

15
app/routes/signin.js Normal file
View File

@ -0,0 +1,15 @@
import TravisRoute from 'travis/routes/basic';
export default TravisRoute.extend({
needsAuth: false,
renderTemplate() {
$('body').attr('id', 'auth');
return this.render('auth.signin');
},
activate() {
return this.auth.signIn();
}
});