feat: add default token format for built-in app

This commit is contained in:
Yang Luo
2024-03-17 20:46:01 +08:00
parent 1b478903d8
commit 6037f37b87
2 changed files with 4 additions and 1 deletions

View File

@ -184,8 +184,10 @@
"refresh_token"
],
"redirectUris": [
""
"http://localhost:9000/callback"
],
"tokenFormat": "JWT",
"tokenFields": [],
"expireInHours": 168,
"failedSigninLimit": 5,
"failedSigninFrozenTime": 15

View File

@ -198,6 +198,7 @@ func initBuiltInApplication() {
},
Tags: []string{},
RedirectUris: []string{},
TokenFormat: "JWT",
TokenFields: []string{},
ExpireInHours: 168,
FormOffset: 2,