aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Plugin.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-23 11:05:30 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-23 11:05:30 -0400
commit6c7175e33d258ff2e65735f68cb05f110a8d2306 (patch)
treedf6423b56192d200dba33a561730bd115ee055f4 /MediaBrowser.Api/Plugin.cs
parent0a48b5e31aa712acd988626a88c52c47467945b2 (diff)
Added an api call to pull down user configuration
Diffstat (limited to 'MediaBrowser.Api/Plugin.cs')
-rw-r--r--MediaBrowser.Api/Plugin.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/MediaBrowser.Api/Plugin.cs b/MediaBrowser.Api/Plugin.cs
index 9a4db1518..6c2e9df7e 100644
--- a/MediaBrowser.Api/Plugin.cs
+++ b/MediaBrowser.Api/Plugin.cs
@@ -71,6 +71,10 @@ namespace MediaBrowser.Api
{
handler = new InProgressItemsHandler();
}
+ else if (localPath.EndsWith("/api/userconfiguration", StringComparison.OrdinalIgnoreCase))
+ {
+ handler = new UserConfigurationHandler();
+ }
if (handler != null)
{