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
| var app = angular.module('sentinelDashboardApp');
|
| app.service('AuthService', ['$http', function ($http) {
| this.check = function () {
| return $http({
| url: '/auth/check',
| method: 'POST'
| });
| };
|
| this.login = function (param) {
| return $http({
| url: '/auth/login',
| params: param,
| method: 'POST'
| });
| };
|
| this.logout = function () {
| return $http({
| url: '/auth/logout',
| method: 'POST'
| });
| };
| }]);
|
|