mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-13 11:35:51 +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.
7 lines
148 B
C#
7 lines
148 B
C#
#nullable enable
|
|
namespace BTCPayServer.Client.App.Models;
|
|
|
|
public class AuthenticationResponse
|
|
{
|
|
public string? AccessToken { get; set; }
|
|
}
|