浏览代码

Adds produces annotation to the base controller to indicate application/json as the response type for endpoints

ZadenRB 5 年之前
父节点
当前提交
eee02a355a
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      Jellyfin.Api/BaseJellyfinApiController.cs

+ 1 - 0
Jellyfin.Api/BaseJellyfinApiController.cs

@@ -7,6 +7,7 @@ namespace Jellyfin.Api
     /// </summary>
     [ApiController]
     [Route("[controller]")]
+    [Produces("application/json")]
     public class BaseJellyfinApiController : ControllerBase
     {
     }