diff options
author | zeripath <art27@cantab.net> | 2022-01-15 16:52:56 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-15 17:52:56 +0100 |
commit | d7c2a2951c6a0a85f43675c83d3d639cd50eccb4 (patch) | |
tree | 52d4147b19fa6615f76fb3b8e8fadef948c5bd89 /models/migrations/migrations.go | |
parent | e239d354c9bd80cdc1606dabd7a4de62708b742e (diff) | |
download | gitea-d7c2a2951c6a0a85f43675c83d3d639cd50eccb4.tar.gz gitea-d7c2a2951c6a0a85f43675c83d3d639cd50eccb4.zip |
Webauthn nits (#18284)
This contains some additional fixes and small nits related to #17957
Signed-off-by: Andrew Thornton <art27@cantab.net>
Co-authored-by: 6543 <6543@obermui.de>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'models/migrations/migrations.go')
-rw-r--r-- | models/migrations/migrations.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/models/migrations/migrations.go b/models/migrations/migrations.go index 4ee2bc839f..5aaf283bd3 100644 --- a/models/migrations/migrations.go +++ b/models/migrations/migrations.go @@ -368,6 +368,8 @@ var migrations = []Migration{ NewMigration("Add authorize column to team_unit table", addAuthorizeColForTeamUnit), // v207 -> v208 NewMigration("Add webauthn table and migrate u2f data to webauthn", addWebAuthnCred), + // v208 -> v209 + NewMigration("Use base32.HexEncoding instead of base64 encoding for cred ID as it is case insensitive", useBase32HexForCredIDInWebAuthnCredential), } // GetCurrentDBVersion returns the current db version |