From 7897af4c772f909f69ebd808c11d9ed89d37ebbf Mon Sep 17 00:00:00 2001 From: Clemens Tolboom Date: Tue, 12 Mar 2024 11:37:03 +0100 Subject: [PATCH 1/2] Add authorization grant refreshing token --- application.template.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application.template.yml b/application.template.yml index f02609e9a..674df505b 100644 --- a/application.template.yml +++ b/application.template.yml @@ -29,6 +29,8 @@ spring: # molgenis: # client-id: '...' # client-secret: '...' +# authorization-grant-types: +# - refresh_token # resourceserver: # jwt: # issuer-uri: 'http://auth.molgenis.org' From edf113395ac5d742730b46a7d290202a9ffbc418 Mon Sep 17 00:00:00 2001 From: Morris Swertz Date: Tue, 14 May 2024 15:07:14 +0200 Subject: [PATCH 2/2] should also have authorization_code --- application.template.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/application.template.yml b/application.template.yml index e616d771e..b9a21e9d4 100644 --- a/application.template.yml +++ b/application.template.yml @@ -31,6 +31,7 @@ spring: # client-secret: '...' # authorization-grant-types: # - refresh_token +# - authorization_code # resourceserver: # jwt: # issuer-uri: 'http://auth.molgenis.org'