Note for a fix needed to be done
This commit is contained in:
parent
77f06c752e
commit
17e8c1073f
1 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,12 @@ package models
|
||||||
|
|
||||||
import "gorm.io/gorm"
|
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.
|
// One authentication method linked to one account.
|
||||||
// Contains the method and whatever the token may be
|
// Contains the method and whatever the token may be
|
||||||
// For a password, this would be a hash of that password,
|
// For a password, this would be a hash of that password,
|
||||||
|
|
Loading…
Reference in a new issue