mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
16 lines
474 B
C#
16 lines
474 B
C#
|
using System;
|
||
|
using BTCPayServer.Security.Bitpay;
|
||
|
using Microsoft.AspNetCore.Authentication;
|
||
|
|
||
|
namespace BTCPayServer.Security
|
||
|
{
|
||
|
public static class AuthenticationExtensions
|
||
|
{
|
||
|
public static AuthenticationBuilder AddBitpayAuthentication(this AuthenticationBuilder builder)
|
||
|
{
|
||
|
builder.AddScheme<BitpayAuthenticationOptions, BitpayAuthenticationHandler>(Policies.BitpayAuthentication, o => { });
|
||
|
return builder;
|
||
|
}
|
||
|
}
|
||
|
}
|