Last active
September 16, 2015 08:34
-
-
Save lnaia/16a5b9ad20da170e7e7b to your computer and use it in GitHub Desktop.
Requests config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
'use strict'; | |
angular | |
.module('edustorage.requests') | |
.config(configure); | |
configure.$inject = ['$routeProvider']; | |
function configure($routeProvider) { | |
$routeProvider.when('/requests', { | |
templateUrl: '/myapp/requests/list.html', | |
controller: 'listCtrl', | |
controllerAs: 'requests', | |
resolve: { | |
auth: ['authenticationService', '$q', function (authenticationService, $q) { | |
var auth = authenticationService.verifyAuthentication(); | |
if (auth) { | |
return $q.when(auth); | |
} else { | |
return $q.reject({ authenticated: false }); | |
} | |
}] | |
} | |
}); | |
$routeProvider.when('/requests/:id', { | |
templateUrl: '/myapp/requests/single.html', | |
controller: 'singleCtrl', | |
controllerAs: 'request', | |
resolve: { | |
auth: ['authenticationService', '$q', function (authenticationService, $q) { | |
var auth = authenticationService.verifyAuthentication(); | |
if (auth) { | |
return $q.when(auth); | |
} else { | |
return $q.reject({ authenticated: false }); | |
} | |
}] | |
} | |
}); | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment