mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-20 10:40:29 +01:00
179520a211
This allows plugins to create custom dbcontexts, which would be namespaced in the scheme with a prefix. Migrations are supported too and the table would be prefixed too
12 lines
425 B
C#
12 lines
425 B
C#
namespace BTCPayServer.Abstractions.Constants
|
|
{
|
|
public class AuthenticationSchemes
|
|
{
|
|
public const string Cookie = "Identity.Application";
|
|
public const string Bitpay = "Bitpay";
|
|
public const string Greenfield = "Greenfield.APIKeys,Greenfield.Basic";
|
|
public const string GreenfieldAPIKeys = "Greenfield.APIKeys";
|
|
public const string GreenfieldBasic = "Greenfield.Basic";
|
|
}
|
|
}
|