mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-03-13 18:00:34 -05:00
fix(frontend): disable self password change if passwordProfile is read-only
Fixes: https://github.com/owncloud/enterprise/issues/6849
This commit is contained in:
committed by
Ralf Haferkamp
parent
47ea3e81b9
commit
346ae88213
@@ -0,0 +1,7 @@
|
||||
Bugfix: Set capability response `disable_self_password_change` correctly
|
||||
|
||||
The capability value `disable_self_password_change` was not being set correctly
|
||||
when `user.passwordProfile` is configured as a read-only attribute.
|
||||
|
||||
https://github.com/owncloud/ocis/pull/9853
|
||||
https://github.com/owncloud/enterprise/issues/6849
|
||||
@@ -7,6 +7,7 @@ import (
|
||||
"os"
|
||||
"path"
|
||||
"path/filepath"
|
||||
"slices"
|
||||
"strconv"
|
||||
|
||||
"github.com/owncloud/ocis/v2/ocis-pkg/capabilities"
|
||||
@@ -81,6 +82,11 @@ func FrontendConfigFromStruct(cfg *config.Config, logger log.Logger) (map[string
|
||||
readOnlyUserAttributes = cfg.ReadOnlyUserAttributes
|
||||
}
|
||||
|
||||
changePasswordDisabled := !cfg.LDAPServerWriteEnabled
|
||||
if slices.Contains(readOnlyUserAttributes, "user.passwordProfile") {
|
||||
changePasswordDisabled = true
|
||||
}
|
||||
|
||||
return map[string]interface{}{
|
||||
"shared": map[string]interface{}{
|
||||
"jwt_secret": cfg.TokenManager.JWTSecret,
|
||||
@@ -218,7 +224,7 @@ func FrontendConfigFromStruct(cfg *config.Config, logger log.Logger) (map[string
|
||||
"read_only_attributes": readOnlyUserAttributes,
|
||||
"create_disabled": !cfg.LDAPServerWriteEnabled,
|
||||
"delete_disabled": !cfg.LDAPServerWriteEnabled,
|
||||
"change_password_self_disabled": !cfg.LDAPServerWriteEnabled,
|
||||
"change_password_self_disabled": changePasswordDisabled,
|
||||
},
|
||||
},
|
||||
"checksums": map[string]interface{}{
|
||||
|
||||
Reference in New Issue
Block a user