jellyfin/MediaBrowser.Controller/Authentication/IPasswordResetProvider.cs

30 lines
643 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using System.Threading.Tasks;
2020-05-12 22:10:35 -04:00
using Jellyfin.Data.Entities;
using MediaBrowser.Model.Users;
namespace MediaBrowser.Controller.Authentication
{
public interface IPasswordResetProvider
{
string Name { get; }
2020-06-15 17:43:52 -04:00
bool IsEnabled { get; }
2020-06-15 17:43:52 -04:00
Task<ForgotPasswordResult> StartForgotPasswordProcess(User user, bool isInNetwork);
Task<PinRedeemResult> RedeemPasswordResetPin(string pin);
}
2019-05-21 13:28:34 -04:00
public class PasswordPinCreationResult
{
public string PinFile { get; set; }
2020-06-15 17:43:52 -04:00
public DateTime ExpirationDate { get; set; }
}
}