mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
02bf5afe0b
* 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
12 lines
245 B
C#
12 lines
245 B
C#
using Fido2NetLib.Objects;
|
|
|
|
namespace BTCPayServer.Fido2.Models
|
|
{
|
|
public class AddFido2CredentialViewModel
|
|
{
|
|
public AuthenticatorAttachment? AuthenticatorAttachment { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
}
|