Add authentication and remove versioning

This commit is contained in:
Claus Vium
2019-11-23 16:31:02 +01:00
parent 05b7e22808
commit 3f651de24c
15 changed files with 232 additions and 50 deletions

View File

@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.Mvc;
namespace Jellyfin.Api
{
[ApiController]
[Route("[controller]")]
public class BaseJellyfinApiController : ControllerBase
{
}
}