修复无法读取鉴权方法列表的问题

This commit is contained in:
刘祥超
2023-07-17 09:32:39 +08:00
parent 102b5859b3
commit bedb18dd71

View File

@@ -16,7 +16,7 @@ type HTTPAuthTypeDefinition struct {
Description string `json:"description"`
}
func FindAllHTTPAuthTypes() []*HTTPAuthTypeDefinition {
func FindAllHTTPAuthTypes(role string) []*HTTPAuthTypeDefinition {
return []*HTTPAuthTypeDefinition{
{
Name: "基本认证",