3.0.5306.16273

This commit is contained in:
Luke Pulverenti
2014-07-12 10:05:51 -04:00
parent b68da51921
commit 862cb87f0f
53 changed files with 667 additions and 240 deletions

View File

@@ -273,6 +273,10 @@ namespace MediaBrowser.Api
throw new ResourceNotFoundException("User not found");
}
var revokeTask = _sessionMananger.RevokeUserTokens(user.Id.ToString("N"));
Task.WaitAll(revokeTask);
var task = _userManager.DeleteUser(user);
Task.WaitAll(task);