Fix consent mode for FreshRSS

This commit is contained in:
Pim Kunis 2025-02-08 13:36:04 +01:00
parent 7f1505878b
commit ceebecbfa3

View file

@ -68,7 +68,6 @@
configMap = { configMap = {
identity_providers.oidc = { identity_providers.oidc = {
enabled = true; enabled = true;
consent_mode = "implicit";
hmac_secret = { hmac_secret = {
secret_name = "authelia"; secret_name = "authelia";
@ -93,6 +92,7 @@
scopes = ["openid" "groups" "email" "profile"]; scopes = ["openid" "groups" "email" "profile"];
userinfo_signed_response_alg = "none"; userinfo_signed_response_alg = "none";
token_endpoint_auth_method = "client_secret_basic"; token_endpoint_auth_method = "client_secret_basic";
consent_mode = "implicit";
} }
]; ];
}; };