diff --git a/init_data.json.template b/init_data.json.template index 2e586e04..c4be7048 100644 --- a/init_data.json.template +++ b/init_data.json.template @@ -120,6 +120,7 @@ "rule": "None" } ], + "grantTypes": ["authorization_code", "password", "client_credentials", "token", "id_token", "refresh_token"], "redirectUris": [""], "expireInHours": 168, "failedSigninLimit": 5, diff --git a/web/src/ApplicationListPage.js b/web/src/ApplicationListPage.js index 4871cfd4..70e4b456 100644 --- a/web/src/ApplicationListPage.js +++ b/web/src/ApplicationListPage.js @@ -61,6 +61,7 @@ class ApplicationListPage extends BaseListPage { {name: "Phone", visible: true, required: true, rule: "None"}, {name: "Agreement", visible: true, required: true, rule: "None"}, ], + grantTypes: ["authorization_code", "password", "client_credentials", "token", "id_token", "refresh_token"], cert: "cert-built-in", redirectUris: ["http://localhost:9000/callback"], tokenFormat: "JWT",