From 9bf1dcbf5be1715f3eb34bfe94f2600b6dec3c25 Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Fri, 29 Apr 2022 13:21:17 +0200 Subject: [PATCH] Enable user-management webui The switch to libregraph/idm happend we can enable the new UI. --- changelog/unreleased/libregraph-idm-switch.md | 9 +++++++++ extensions/web/pkg/config/defaults/defaultconfig.go | 2 +- extensions/web/pkg/service/v0/service.go | 4 ---- 3 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 changelog/unreleased/libregraph-idm-switch.md diff --git a/changelog/unreleased/libregraph-idm-switch.md b/changelog/unreleased/libregraph-idm-switch.md new file mode 100644 index 00000000000..3ca1a09c61e --- /dev/null +++ b/changelog/unreleased/libregraph-idm-switch.md @@ -0,0 +1,9 @@ +Change: Switched default configuration to use libregraph/idm + +We switched the default configuration of oCIS to use the "idm" service (based +on libregraph/idm) as the standard source for user and group information. The +accounts and glauth services are no longer enabled by default and will be +removed with an upcoming release. + +https://github.com/owncloud/ocis/pull/3331 +https://github.com/owncloud/ocis/pull/3633 diff --git a/extensions/web/pkg/config/defaults/defaultconfig.go b/extensions/web/pkg/config/defaults/defaultconfig.go index bbfad9bdfd3..fe8ced251db 100644 --- a/extensions/web/pkg/config/defaults/defaultconfig.go +++ b/extensions/web/pkg/config/defaults/defaultconfig.go @@ -50,7 +50,7 @@ func DefaultConfig() *config.Config { ResponseType: "code", Scope: "openid profile email", }, - Apps: []string{"files", "search", "preview", "text-editor", "pdf-viewer", "external"}, + Apps: []string{"files", "search", "preview", "text-editor", "pdf-viewer", "external", "user-management"}, }, }, } diff --git a/extensions/web/pkg/service/v0/service.go b/extensions/web/pkg/service/v0/service.go index 3f762fded07..4a0cf6d0747 100644 --- a/extensions/web/pkg/service/v0/service.go +++ b/extensions/web/pkg/service/v0/service.go @@ -85,10 +85,6 @@ func (p Web) getPayload() (payload []byte, err error) { ID: "settings", Path: "/settings.js", }, - { - ID: "accounts", - Path: "/accounts.js", - }, } }