diff options
| author | Claus Vium <clausvium@gmail.com> | 2019-01-05 00:29:00 +0100 |
|---|---|---|
| committer | Bond-009 <bond.009@outlook.com> | 2019-01-15 16:48:21 +0100 |
| commit | d707e969fa51363183853162440bdea7c403ef5e (patch) | |
| tree | 899c9b6d66589b4e50c74796b431f1a502f61db7 | |
| parent | 4a03ac40220c26e4c08788a6f9434e0f6472bf9d (diff) | |
Added some todos
| -rw-r--r-- | MediaBrowser.Api/PluginService.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/MediaBrowser.Api/PluginService.cs b/MediaBrowser.Api/PluginService.cs index 477f916de..de872f8b6 100644 --- a/MediaBrowser.Api/PluginService.cs +++ b/MediaBrowser.Api/PluginService.cs @@ -75,7 +75,8 @@ namespace MediaBrowser.Api /// <value>The request stream.</value> public Stream RequestStream { get; set; } } - + + //TODO cvium delete this [Route("/Registrations/{Name}", "GET", Summary = "Gets registration status for a feature", IsHidden = true)] [Authenticated] public class GetRegistration : IReturn<RegistrationInfo> @@ -84,6 +85,7 @@ namespace MediaBrowser.Api public string Name { get; set; } } + //TODO cvium delete this public class RegistrationInfo { public string Name { get; set; } @@ -125,7 +127,7 @@ namespace MediaBrowser.Api _jsonSerializer = jsonSerializer; } - + //TODO cvium delete this public async Task<object> Get(GetRegistration request) { var info = new RegistrationInfo |
