From 6c7175e33d258ff2e65735f68cb05f110a8d2306 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Mon, 23 Jul 2012 11:05:30 -0400 Subject: Added an api call to pull down user configuration --- MediaBrowser.Api/Plugin.cs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'MediaBrowser.Api/Plugin.cs') 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) { -- cgit v1.2.3