1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 18:21:12 +03:00

Remove route resolves from login/logout routes

Was previously using wrong route names.
This commit is contained in:
Jared Tabor 2016-05-02 13:11:15 -07:00
parent 9cc9ef6b33
commit 5c02b2dafe

View File

@ -3,7 +3,7 @@ export default function($stateProvider) {
return {
getResolves: function(state){
var resolve = state.resolve || {},
routes = ["login", "logout", "socket"];
routes = ["signIn", "signOut"];
if(_.indexOf(routes, state.name)>-1){
return;
}