2022-01-15 22:22:56 +05:30
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package migrations
|
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
|
|
|
func useBase32HexForCredIDInWebAuthnCredential(x *xorm.Engine) error {
|
2022-02-17 02:33:58 +05:30
|
|
|
// noop
|
2022-01-15 22:22:56 +05:30
|
|
|
return nil
|
|
|
|
}
|