Skip to content
This repository was archived by the owner on Feb 2, 2018. It is now read-only.

Commit 847ffd6

Browse files
author
Woody Rousseau
committed
Merge pull request #589 from GroupEat/feature/fix-memory
Fixes memory issue
2 parents 9dcf7d5 + 5753f67 commit 847ffd6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/scripts/routing.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ angular.module('routing', []).config(function ($stateProvider, $urlRouterProvide
2222
templateUrl: 'templates/authentication.html',
2323
controller: 'AuthenticationCtrl'
2424
}
25-
}
25+
},
26+
data: { permissions: { except: [] } }
2627
})
2728
.state('app.signup', {
2829
url: '/signup',
@@ -31,7 +32,8 @@ angular.module('routing', []).config(function ($stateProvider, $urlRouterProvide
3132
templateUrl: 'templates/signup.html',
3233
controller: 'SignupCtrl'
3334
}
34-
}
35+
},
36+
data: { permissions: { except: [] } }
3537
})
3638
.state('app.group-orders', {
3739
url: '',

0 commit comments

Comments
 (0)