aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs
diff options
context:
space:
mode:
authorPhallacy <Dragoonmac@gmail.com>2019-03-16 21:36:45 -0700
committerPhallacy <Dragoonmac@gmail.com>2019-03-16 21:36:45 -0700
commit80aedcd7e24a7708f44491e3cd359f911a124c8f (patch)
treec5c48903df72b921a05016cb6f191154a91fd79a /Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs
parentfc28c9237cf08bd0100629ad5830824397e52565 (diff)
really fixed line endings
Diffstat (limited to 'Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs')
-rw-r--r--Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs22
1 files changed, 0 insertions, 22 deletions
diff --git a/Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs b/Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs
deleted file mode 100644
index 87dbe684c..000000000
--- a/Emby.Server.Implementations/Library/DefaultPasswordResetProvider.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-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();
- }
- }
-}