mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-15 11:52:23 +01:00
34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('users').controller('AuthenticationController', ['$scope', '$http', '$location', 'Authentication',
|
|
function($scope, $http, $location, Authentication) {
|
|
$scope.authentication = Authentication;
|
|
|
|
// If user is signed in then redirect back home
|
|
if ($scope.authentication.user) $location.path('/');
|
|
|
|
$scope.signup = function() {
|
|
$http.post('/api/auth/signup', $scope.credentials).success(function(response) {
|
|
// If successful we assign the response to the global user model
|
|
$scope.authentication.user = response;
|
|
|
|
// And redirect to the index page
|
|
$location.path('/');
|
|
}).error(function(response) {
|
|
$scope.error = response.message;
|
|
});
|
|
};
|
|
|
|
$scope.signin = function() {
|
|
$http.post('/api/auth/signin', $scope.credentials).success(function(response) {
|
|
// If successful we assign the response to the global user model
|
|
$scope.authentication.user = response;
|
|
|
|
// And redirect to the index page
|
|
$location.path('/');
|
|
}).error(function(response) {
|
|
$scope.error = response.message;
|
|
});
|
|
};
|
|
}
|
|
]); |