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

using Jellyfin.Data.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);
    }
}