auth.controller.js
842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
(function () {
'use strict';
angular
.module('dialoga')
.controller('AuthPageController', AuthPageController);
/** @ngInject */
function AuthPageController($rootScope, AUTH_EVENTS, AuthService, Session, $log) {
$log.debug('AuthPageController');
var vm = this;
vm.$rootScope = $rootScope;
vm.AUTH_EVENTS = AUTH_EVENTS;
vm.AuthService = AuthService;
vm.Session = Session;
vm.$log = $log;
vm.init();
}
AuthPageController.prototype.init = function() {
var vm = this;
// init variables
vm.credentials = {};
// attach events
// ...
};
AuthPageController.prototype.login = function(credentials) {
var vm = this;
vm.AuthService.login(credentials).then(function(/*user*/) {
// handle view
}, function() {
// handle view
});
};
})();