mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-15 21:43:03 +03:00
Update password reset to always return the same response structure
Original-merge: 4ad3141875
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
16 lines
374 B
C#
16 lines
374 B
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
|
|
namespace MediaBrowser.Model.Users
|
|
{
|
|
public enum ForgotPasswordAction
|
|
{
|
|
[Obsolete("Returning different actions represents a security concern.")]
|
|
ContactAdmin = 0,
|
|
PinCode = 1,
|
|
[Obsolete("Returning different actions represents a security concern.")]
|
|
InNetworkRequired = 2
|
|
}
|
|
}
|