aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Net/IAuthService.cs
blob: 61fc7e6e647117f606d27e59ca7c1d571b6ee936 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#nullable enable

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);
        Jellyfin.Data.Entities.User? Authenticate(HttpRequest request, IAuthenticationAttributes authAttribtues);
    }
}