2017-08-15 15:37:37 +00:00
|
|
|
app.controller('homeCtrl', [
|
2017-08-15 16:14:27 +00:00
|
|
|
'$rootScope', '$scope', 'Auth', 'localStorageService', '$location', 'azp@oauth3.org',
|
|
|
|
function ($rootScope, $scope, Auth, localStorageService, $location, Oauth3) {
|
2017-08-14 19:54:42 +00:00
|
|
|
|
2017-08-09 18:41:43 +00:00
|
|
|
var vm = this;
|
2017-08-14 19:54:42 +00:00
|
|
|
vm.oauth3 = Oauth3.oauth3;
|
2017-08-09 04:23:19 +00:00
|
|
|
|
2017-08-15 16:14:27 +00:00
|
|
|
vm.achievement = true;
|
2017-08-11 19:21:35 +00:00
|
|
|
|
2017-08-15 16:41:12 +00:00
|
|
|
// throw new Error('loaded home controller');
|
2017-08-08 20:54:25 +00:00
|
|
|
}]);
|