Merge pull request #101 from Haktrum/login-to-im-98
Fix to #98 - Redirecting to /im from /login if already logged in
This commit is contained in:
commit
f54fd93faa
@ -22,6 +22,12 @@ angular.module('myApp.controllers', [])
|
|||||||
})
|
})
|
||||||
|
|
||||||
.controller('AppLoginController', function ($scope, $location, $timeout, MtpApiManager, ErrorService) {
|
.controller('AppLoginController', function ($scope, $location, $timeout, MtpApiManager, ErrorService) {
|
||||||
|
MtpApiManager.getUserID().then(function (id) {
|
||||||
|
if (id) {
|
||||||
|
$location.url('/im');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
});
|
||||||
var options = {dcID: 1};
|
var options = {dcID: 1};
|
||||||
|
|
||||||
$scope.credentials = {};
|
$scope.credentials = {};
|
||||||
|
Loading…
Reference in New Issue
Block a user