Added a user api handler, and improved portable ApiClient

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-09-07 21:33:49 -04:00
parent 23ea228079
commit c7b305ee2e
7 changed files with 446 additions and 11 deletions

View File

@@ -109,9 +109,9 @@ namespace MediaBrowser.Api
{
return new ServerConfigurationHandler();
}
else if (IsUrlMatch("/api/defaultuser", localPath))
else if (IsUrlMatch("/api/user", localPath))
{
return new DefaultUserHandler();
return new UserHandler();
}
else if (IsUrlMatch("/api/pluginassembly", localPath))
{