auth.controller.js
813 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('AuthController', AuthController);
/** @ngInject */
function AuthController($rootScope, AUTH_EVENTS, AuthService, Session, $log) {
$log.debug('AuthController');
var vm = this;
vm.$rootScope = $rootScope;
vm.AUTH_EVENTS = AUTH_EVENTS;
vm.AuthService = AuthService;
vm.Session = Session;
vm.$log = $log;
vm.init();
}
AuthController.prototype.init = function() {
var vm = this;
// init variables
vm.credentials = {};
// attach events
// ...
};
AuthController.prototype.login = function(credentials) {
var vm = this;
vm.AuthService.login(credentials).then(function(user) {
// handle view
}, function() {
// handle view
});
};
})();