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

allow to disable chat in office suite #713

Merged
merged 1 commit into from
Sep 10, 2024
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
12 changes: 12 additions & 0 deletions charts/ocis/docs/values-desc-table.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ a| [subs=-attributes]
a| [subs=-attributes]
default configuration of oCIS, see https://doc.owncloud.com/ocis/next/deployment/services/s-list/app-registry.html#yaml-example[doc.owncloud.com]
| Mimetype configuration. Let's you configure a mimetypes' default application, if it is allowed to create a new file and more.
| features.appsIntegration.wopiIntegration.officeSuites[0].disableChat
a| [subs=-attributes]
+bool+
a| [subs=-attributes]
`false`
| Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
| features.appsIntegration.wopiIntegration.officeSuites[0].enabled
a| [subs=-attributes]
+bool+
Expand Down Expand Up @@ -204,6 +210,12 @@ a| [subs=-attributes]
a| [subs=-attributes]
`""`
| URI of the office suite.
| features.appsIntegration.wopiIntegration.officeSuites[1].disableChat
a| [subs=-attributes]
+bool+
a| [subs=-attributes]
`false`
| Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
| features.appsIntegration.wopiIntegration.officeSuites[1].enabled
a| [subs=-attributes]
+bool+
Expand Down
4 changes: 4 additions & 0 deletions charts/ocis/docs/values.adoc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,8 @@ features:
insecure: false
# -- Enable secure view for this office suite
secureViewEnabled: false
# -- Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
disableChat: false
# Ingress for collaboration service.
ingress:
# -- Enables the Ingress. Only needed if the office application is not running within the same cluster.
Expand Down Expand Up @@ -343,6 +345,8 @@ features:
insecure: false
# -- Enable secure view for this office suite. Note: OnlyOffice doesn't support secureView right now
secureViewEnabled: false
# -- Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
disableChat: false
# Ingress for collaboration service.
ingress:
# -- Enables the Ingress. Only needed if the office application is not running within the same cluster.
Expand Down
3 changes: 3 additions & 0 deletions charts/ocis/templates/collaboration/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ spec:
value: http://{{ $.appName }}.{{ template "ocis.namespace" $ }}.svc.cluster.local:9300
{{- end }}

- name: COLLABORATION_WOPI_DISABLE_CHAT
value: {{ default false $officeSuite.disableChat | quote }}

- name: COLLABORATION_JWT_SECRET
valueFrom:
secretKeyRef:
Expand Down
4 changes: 4 additions & 0 deletions charts/ocis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,8 @@ features:
insecure: false
# -- Enable secure view for this office suite
secureViewEnabled: false
# -- Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
disableChat: false
# Ingress for collaboration service.
ingress:
# -- Enables the Ingress. Only needed if the office application is not running within the same cluster.
Expand Down Expand Up @@ -342,6 +344,8 @@ features:
insecure: false
# -- Enable secure view for this office suite. Note: OnlyOffice doesn't support secureView right now
secureViewEnabled: false
# -- Disables the chat in the office suite. Note: This currently only applies to OnlyOffice
disableChat: false
# Ingress for collaboration service.
ingress:
# -- Enables the Ingress. Only needed if the office application is not running within the same cluster.
Expand Down