Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support WEB_OPTION_USER_LIST_REQUIRES_FILTER #451

Merged
merged 1 commit into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions charts/ocis/docs/values.adoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1823,6 +1823,9 @@ services:
privacyURL:
# Specifies the login url
loginURL:
# Defines whether one ore more filters must be set in order to list users in the Web admin settings.
userListRequiresFilter: false
# Embed mode settings
embed:
# Specifies if web "embed"-mode is enabled. Defaults to not being set (= disabled).
enabled: ""
Expand Down
5 changes: 5 additions & 0 deletions charts/ocis/templates/web/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,11 @@ spec:
value: {{ . | quote }}
{{- end }}

{{- with .Values.services.web.config.userListRequiresFilter }}
- name: WEB_OPTION_USER_LIST_REQUIRES_FILTER
value: {{ . | quote }}
{{- end }}

- name: WEB_JWT_SECRET
valueFrom:
secretKeyRef:
Expand Down
3 changes: 3 additions & 0 deletions charts/ocis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,9 @@ services:
privacyURL:
# Specifies the login url
loginURL:
# Defines whether one ore more filters must be set in order to list users in the Web admin settings.
userListRequiresFilter: false
# Embed mode settings
embed:
# Specifies if web "embed"-mode is enabled. Defaults to not being set (= disabled).
enabled: ""
Expand Down