Skip to content

Commit

Permalink
style: remove redundant commas (#252)
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Schneider <jens.schneider.ac@posteo.de>
  • Loading branch information
JensAc authored and pmig committed Sep 18, 2023
1 parent 9f5987d commit 9c920ec
Showing 1 changed file with 8 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ class NextcloudConfigMap : CRUDKubernetesDependentResource<ConfigMap, Nextcloud>
spec.apps.oidc?.let { "oidc_login_logout_url" to spec.host },
spec.apps.oidc?.let { "oidc_login_button_text" to "Login with " + it.name },
spec.apps.oidc?.let { "oidc_login_disable_registration" to false },
spec.apps.oidc?.let { "oidc_login_scope" to "openid profile email"},
spec.apps.oidc?.let { "oidc_login_attributes" to mapOf(
"id" to "sub",
"name" to "name",
"mail" to "email",)
},
spec.apps.oidc?.let { "oidc_login_scope" to "openid profile email" },
spec.apps.oidc?.let {
"oidc_login_attributes" to mapOf(
"id" to "sub",
"name" to "name",
"mail" to "email"
)
}
).toMap(),
listOfNotNull(
spec.apps.office?.let {
Expand Down

0 comments on commit 9c920ec

Please sign in to comment.