This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2017-05-12 10:58:43 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
angular.module('microStock')
|
2017-06-09 09:42:39 +02:00
|
|
|
.controller('GlobalCtrl',['$scope','$http', function($scope, $http){
|
2017-05-12 10:58:43 +02:00
|
|
|
$scope.loggedIn = false;
|
|
|
|
|
|
|
|
$scope.login = function(){
|
|
|
|
if($scope.loggedIn){
|
2017-06-09 09:42:39 +02:00
|
|
|
$http.defaults.headers.common["session"] = "logoff";
|
2017-05-12 10:58:43 +02:00
|
|
|
$scope.loggedIn = false;
|
|
|
|
}else {
|
2017-06-09 09:42:39 +02:00
|
|
|
$http.defaults.headers.common["session"] = "testsessionkey";
|
2017-05-12 10:58:43 +02:00
|
|
|
$scope.loggedIn = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}]);
|