From 1c949e415ea84a162366e855bc4397eda32d1a9e Mon Sep 17 00:00:00 2001 From: Gucheng Wang Date: Fri, 6 May 2022 09:31:11 +0800 Subject: [PATCH] Add refresh_token to app grantTypes. --- web/src/ApplicationEditPage.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/src/ApplicationEditPage.js b/web/src/ApplicationEditPage.js index f05018c6..65b4ae82 100644 --- a/web/src/ApplicationEditPage.js +++ b/web/src/ApplicationEditPage.js @@ -454,8 +454,9 @@ class ApplicationEditPage extends React.Component { {id: "password", name: "Password"}, {id: "client_credentials", name: "Client Credentials"}, {id: "token", name: "Token"}, - {id: "id_token",name:"ID Token"}, - ].map((item, index)=>) + {id: "id_token", name: "ID Token"}, + {id: "refresh_token", name: "Refresh Token"}, + ].map((item, index) => ) }