Merge pull request #2960 from ZadenRB/content-type-annotation

Adds annotation for content-type of ASP.NET Web API endpoints
pull/2989/head
Bond-009 4 years ago committed by GitHub
commit 3c366954ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,3 +1,4 @@
using System.Net.Mime;
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api
@ -7,6 +8,7 @@ namespace Jellyfin.Api
/// </summary>
[ApiController]
[Route("[controller]")]
[Produces(MediaTypeNames.Application.Json)]
public class BaseJellyfinApiController : ControllerBase
{
}

Loading…
Cancel
Save