diff --git a/storage-new/models/UserAuthentication.go b/storage-new/models/UserAuthentication.go index a6e7803..d2d59a9 100644 --- a/storage-new/models/UserAuthentication.go +++ b/storage-new/models/UserAuthentication.go @@ -2,6 +2,12 @@ package models import "gorm.io/gorm" +// FIXME: Move passkeys to separate table +// Storing passkey credentials in this table requires marshalling +// them to json as of right now +// This causes problems with updating if encryption has to be added +// Same also needs to be done for the login process + // One authentication method linked to one account. // Contains the method and whatever the token may be // For a password, this would be a hash of that password,