Compare commits

...

1 Commits

Author SHA1 Message Date
6037f37b87 feat: add default token format for built-in app 2024-03-17 20:46:01 +08:00
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,