浏览代码

Added some todos

Claus Vium 6 年之前
父节点
当前提交
d707e969fa
共有 1 个文件被更改,包括 4 次插入2 次删除
  1. 4 2
      MediaBrowser.Api/PluginService.cs

+ 4 - 2
MediaBrowser.Api/PluginService.cs

@@ -75,7 +75,8 @@ namespace MediaBrowser.Api
         /// <value>The request stream.</value>
         /// <value>The request stream.</value>
         public Stream RequestStream { get; set; }
         public Stream RequestStream { get; set; }
     }
     }
-
+    
+    //TODO cvium delete this
     [Route("/Registrations/{Name}", "GET", Summary = "Gets registration status for a feature", IsHidden = true)]
     [Route("/Registrations/{Name}", "GET", Summary = "Gets registration status for a feature", IsHidden = true)]
     [Authenticated]
     [Authenticated]
     public class GetRegistration : IReturn<RegistrationInfo>
     public class GetRegistration : IReturn<RegistrationInfo>
@@ -84,6 +85,7 @@ namespace MediaBrowser.Api
         public string Name { get; set; }
         public string Name { get; set; }
     }
     }
 	
 	
+    //TODO cvium delete this
     public class RegistrationInfo
     public class RegistrationInfo
     {
     {
         public string Name { get; set; }
         public string Name { get; set; }
@@ -125,7 +127,7 @@ namespace MediaBrowser.Api
             _jsonSerializer = jsonSerializer;
             _jsonSerializer = jsonSerializer;
         }
         }
         
         
-        
+        //TODO cvium delete this
         public async Task<object> Get(GetRegistration request)
         public async Task<object> Get(GetRegistration request)
         {	
         {	
             var info = new RegistrationInfo
             var info = new RegistrationInfo