diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-23 22:45:00 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-03-23 22:45:00 -0400 |
| commit | e2dcddc5ac43846baea0f9b1a0fc62844dd9ee1d (patch) | |
| tree | e3818758a13a107cb28e54bb63ce489366ea50d5 /MediaBrowser.Api/EnvironmentService.cs | |
| parent | 521ec4936101d6affaf68a95cd8dee090395e2b6 (diff) | |
made compression and caching available to plugin api endpoints
Diffstat (limited to 'MediaBrowser.Api/EnvironmentService.cs')
| -rw-r--r-- | MediaBrowser.Api/EnvironmentService.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/EnvironmentService.cs b/MediaBrowser.Api/EnvironmentService.cs index d35d48536..5ba2586e3 100644 --- a/MediaBrowser.Api/EnvironmentService.cs +++ b/MediaBrowser.Api/EnvironmentService.cs @@ -2,7 +2,6 @@ using MediaBrowser.Controller.IO; using MediaBrowser.Model.IO; using MediaBrowser.Model.Net; -using MediaBrowser.Server.Implementations.HttpServer; using ServiceStack.ServiceHost; using System; using System.Collections.Generic; @@ -16,7 +15,7 @@ namespace MediaBrowser.Api /// Class GetDirectoryContents /// </summary> [Route("/Environment/DirectoryContents", "GET")] - [ServiceStack.ServiceHost.Api(Description = "Gets the contents of a given directory in the file system")] + [Api(Description = "Gets the contents of a given directory in the file system")] public class GetDirectoryContents : IReturn<List<FileSystemEntryInfo>> { /// <summary> |
