fix(mycloud-nextcloud): add coloring support
This commit is contained in:
parent
9115d1312a
commit
d1baf04a2b
2 changed files with 10 additions and 3 deletions
|
@ -128,6 +128,9 @@ spec:
|
|||
echo "setup theming:";
|
||||
/var/www/html/occ theming:config disable-user-theming yes;
|
||||
/var/www/html/occ theming:config name "{{ .Values.commons.theme.title }}";
|
||||
{{- with .Values.theme.color }}
|
||||
/var/www/html/occ theming:config color {{ . | quote }};
|
||||
{{- end }}
|
||||
|
||||
echo "setup oidc:";
|
||||
/var/www/html/occ user_oidc:provider mycloud \
|
||||
|
|
|
@ -68,6 +68,13 @@ auth:
|
|||
# https://goauthentik.io/integrations/services/nextcloud/#provider-and-application
|
||||
idMapping: sub
|
||||
|
||||
theme:
|
||||
# -- set theme color in nextcloud
|
||||
color:
|
||||
|
||||
# -- default quota for an user
|
||||
quota:
|
||||
|
||||
apps:
|
||||
checksum:
|
||||
enabled: true
|
||||
|
@ -91,9 +98,6 @@ apps:
|
|||
memories:
|
||||
enabled: false
|
||||
|
||||
# -- default quota for an user
|
||||
quota:
|
||||
|
||||
|
||||
ingress:
|
||||
# -- default: fs.(Values.commons.ingress.domain)
|
||||
|
|
Loading…
Add table
Reference in a new issue