From a5ea5af895a8482b7bd91392aa63da7ea5261e39 Mon Sep 17 00:00:00 2001 From: Moritz Date: Mon, 15 Jun 2026 17:30:40 +0200 Subject: [PATCH] fix oidc: add grant_types --- abra.sh | 21 +++++++++++---------- hedgedoc.yaml.tmpl | 3 +++ matrix.yaml.tmpl | 3 +++ mila.yaml.tmpl | 3 +++ monitoring.yaml.tmpl | 3 +++ nextcloud.yaml.tmpl | 3 +++ outline.yaml.tmpl | 3 +++ rallly.yaml.tmpl | 3 +++ vikunja.yaml.tmpl | 3 +++ wekan.yaml.tmpl | 3 +++ wordpress.yaml.tmpl | 3 +++ 11 files changed, 41 insertions(+), 10 deletions(-) diff --git a/abra.sh b/abra.sh index 75fd8f3..6e0d46f 100644 --- a/abra.sh +++ b/abra.sh @@ -5,18 +5,19 @@ export FLOW_INVALIDATION_VERSION=v2 export FLOW_RECOVERY_VERSION=v2 export FLOW_TRANSLATION_VERSION=v3 export SYSTEM_BRAND_VERSION=v4 -export NEXTCLOUD_CONFIG_VERSION=v3 -export WORDPRESS_CONFIG_VERSION=v7 -export MATRIX_CONFIG_VERSION=v3 -export WEKAN_CONFIG_VERSION=v5 -export VIKUNJA_CONFIG_VERSION=v3 -export OUTLINE_CONFIG_VERSION=v4 +export NEXTCLOUD_CONFIG_VERSION=v4 +export WORDPRESS_CONFIG_VERSION=v8 +export MATRIX_CONFIG_VERSION=v4 +export WEKAN_CONFIG_VERSION=v6 +export VIKUNJA_CONFIG_VERSION=v4 +export OUTLINE_CONFIG_VERSION=v5 export KIMAI_CONFIG_VERSION=v3 export ZAMMAD_CONFIG_VERSION=v4 -export RALLLY_CONFIG_VERSION=v4 -export HEDGEDOC_CONFIG_VERSION=v3 -export MONITORING_CONFIG_VERSION=v4 -export MILA_CONFIG_VERSION=v1 +export RALLLY_CONFIG_VERSION=v5 +export HEDGEDOC_CONFIG_VERSION=v4 +export MONITORING_CONFIG_VERSION=v5 +export MILA_CONFIG_VERSION=v2 +export DB_ENTRYPOINT_VERSION=v1 export PG_BACKUP_VERSION=v2 export ENTRYPOINT_CSS_VERSION=v1 diff --git a/hedgedoc.yaml.tmpl b/hedgedoc.yaml.tmpl index 10b6007..cee69b4 100644 --- a/hedgedoc.yaml.tmpl +++ b/hedgedoc.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: hedgedoc_provider identifiers: diff --git a/matrix.yaml.tmpl b/matrix.yaml.tmpl index d5195d6..dd931ad 100644 --- a/matrix.yaml.tmpl +++ b/matrix.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: user_username token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: matrix_provider identifiers: diff --git a/mila.yaml.tmpl b/mila.yaml.tmpl index 3fc7d14..a61dc18 100644 --- a/mila.yaml.tmpl +++ b/mila.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: mila_provider identifiers: diff --git a/monitoring.yaml.tmpl b/monitoring.yaml.tmpl index 3c88d6a..f840885 100644 --- a/monitoring.yaml.tmpl +++ b/monitoring.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: user_username token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: monitoring_provider identifiers: diff --git a/nextcloud.yaml.tmpl b/nextcloud.yaml.tmpl index 33bdb68..ad0db76 100644 --- a/nextcloud.yaml.tmpl +++ b/nextcloud.yaml.tmpl @@ -40,6 +40,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: user_username token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: nextcloud_provider identifiers: diff --git a/outline.yaml.tmpl b/outline.yaml.tmpl index a388a16..377f1b7 100644 --- a/outline.yaml.tmpl +++ b/outline.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: outline_provider identifiers: diff --git a/rallly.yaml.tmpl b/rallly.yaml.tmpl index a1a649a..e933469 100644 --- a/rallly.yaml.tmpl +++ b/rallly.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: rallly_provider identifiers: diff --git a/vikunja.yaml.tmpl b/vikunja.yaml.tmpl index 5267035..3d83374 100644 --- a/vikunja.yaml.tmpl +++ b/vikunja.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: vikunja_provider identifiers: diff --git a/wekan.yaml.tmpl b/wekan.yaml.tmpl index a2c70de..26a6092 100644 --- a/wekan.yaml.tmpl +++ b/wekan.yaml.tmpl @@ -45,6 +45,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: hashed_user_id token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: wekan_provider identifiers: diff --git a/wordpress.yaml.tmpl b/wordpress.yaml.tmpl index 8f9037e..986dcc2 100644 --- a/wordpress.yaml.tmpl +++ b/wordpress.yaml.tmpl @@ -27,6 +27,9 @@ entries: signing_key: !Find [authentik_crypto.certificatekeypair, [name, authentik Self-signed Certificate]] sub_mode: user_username token_validity: days=30 + grant_types: + - authorization_code + - refresh_token conditions: [] id: wordpress_provider identifiers: