mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-28 15:50:20 -05:00
23 lines
658 B
C#
23 lines
658 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Authentication;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace Emby.Server.Implementations.Library
|
|
{
|
|
public class DefaultPasswordResetProvider : IPasswordResetProvider
|
|
{
|
|
public string Name => "Default Password Reset";
|
|
|
|
public bool IsEnabled => true;
|
|
|
|
// set our default timeout to an hour since we'll be making the PIN it generates a little less fragile
|
|
public TimeSpan PasswordResetTimeout => new TimeSpan(1,0,0);
|
|
|
|
public Task ResetPassword(User user)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|