Fixed up user login logic and works now, now to clean up the user data.

This commit is contained in:
Shannon
2013-06-17 05:34:30 +02:00
parent c52e51b2d8
commit 88b84c5bcf
5 changed files with 9 additions and 9 deletions

View File

@@ -40,7 +40,7 @@ angular.module('umbraco.services')
logout: function () {
$rootScope.$apply(function () {
authenticated = false;
jQuery.cookie('authed', null);
jQuery.cookie('UMB_UCONTEXT', null);
currentUser = undefined;
});
},