Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/blame/commit/82df226246515991b5a7dac576972ee4e6c0a646/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs You should set ROOT_URL correctly, otherwise the web may not work correctly.
jellyfin/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs

39 lines
909 B

#pragma warning disable CS1591
using System.Threading.Tasks;
using Jellyfin.Data.Entities;
6 years ago
using MediaBrowser.Model.Users;
namespace MediaBrowser.Controller.Authentication
{
public interface IAuthenticationProvider
{
string Name { get; }
6 years ago
bool IsEnabled { get; }
6 years ago
Task<ProviderAuthenticationResult> Authenticate(string username, string password);
bool HasPassword(User user);
6 years ago
Task ChangePassword(User user, string newPassword);
}
public interface IRequiresResolvedUser
{
Task<ProviderAuthenticationResult> Authenticate(string username, string password, User? resolvedUser);
6 years ago
}
public interface IHasNewUserPolicy
{
UserPolicy GetNewUserPolicy();
}
public class ProviderAuthenticationResult
{
public required string Username { get; set; }
public string? DisplayName { get; set; }
6 years ago
}
}