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

@@ -1,9 +1,12 @@
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Services;
using Microsoft.AspNetCore.Http;
namespace MediaBrowser.Controller.Net
{
public interface IAuthService
{
void Authenticate(IRequest request, IAuthenticationAttributes authAttribtues);
User Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
}
}