mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 06:35:13 +01:00
* Migrate existing U2F to Fido2 This seamlessly switches all u2f registrations over to the new FIDO2 support. Please note that I have not yet added a way to drop the u2f DB and its UI so that we can test the migration works properly for all. * add testing logic * fix u2f tests * remove duplicate status message * fix test and namespaces * fix test
25 lines
971 B
C#
25 lines
971 B
C#
namespace BTCPayServer.Services
|
|
{
|
|
public class MigrationSettings
|
|
{
|
|
public bool MigrateU2FToFIDO2{ get; set; }
|
|
public bool UnreachableStoreCheck { get; set; }
|
|
public bool DeprecatedLightningConnectionStringCheck { get; set; }
|
|
public bool ConvertMultiplierToSpread { get; set; }
|
|
public bool ConvertNetworkFeeProperty { get; set; }
|
|
public bool ConvertCrowdfundOldSettings { get; set; }
|
|
public bool ConvertWalletKeyPathRoots { get; set; }
|
|
public bool CheckedFirstRun { get; set; }
|
|
public bool PaymentMethodCriteria { get; set; }
|
|
public bool TransitionToStoreBlobAdditionalData { get; set; }
|
|
public bool TransitionInternalNodeConnectionString { get; set; }
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Empty;
|
|
}
|
|
|
|
// Done in DbMigrationsHostedService
|
|
public int? MigratedInvoiceTextSearchPages { get; set; }
|
|
}
|
|
}
|