mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 20:24:26 +01:00
- Updates API key extraction to also accept "Bearer" auth header. This is necessary for non-cookie based SignalR connections. - Adds authentication related models to the client lib - Succeeds and replaces #6484.
9 lines
208 B
C#
9 lines
208 B
C#
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class ResetPasswordRequest
|
|
{
|
|
public string Email { get; set; }
|
|
public string ResetCode { get; set; }
|
|
public string NewPassword { get; set; }
|
|
}
|