Skip to content

Instantly share code, notes, and snippets.

@lnaia
Last active September 16, 2015 08:34
Show Gist options
  • Save lnaia/16a5b9ad20da170e7e7b to your computer and use it in GitHub Desktop.
Save lnaia/16a5b9ad20da170e7e7b to your computer and use it in GitHub Desktop.
Requests config
(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