File tree Expand file tree Collapse file tree 3 files changed +38
-1
lines changed
Expand file tree Collapse file tree 3 files changed +38
-1
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ User management
44
55.. toctree ::
66 :maxdepth: 2
7-
7+
88 user_configuration
99 reset_admin_password
1010 reset_user_password
@@ -15,3 +15,4 @@ User management
1515 user_auth_ldap_cleanup
1616 user_auth_ldap_api
1717 user_provisioning_api
18+ profile_configuration
Original file line number Diff line number Diff line change 1+ =====================
2+ Profile configuration
3+ =====================
4+
5+ The user profile presents the information of a user and is enabled by default
6+ for all users. Users may individually enable or disable their profile in their
7+ Personal info settings under the Personal settings section.
8+
9+ As an administrator you may change the default for new users and may also
10+ disable profile globally to remove all profile functionality.
11+
12+ To enable or disable profile by default for new users switch the toggle in
13+ Basic settings under the Administration settings section.
14+
15+ .. figure :: ../images/profile_default_setting.png
16+
17+ .. note :: If you are upgrading from Nextcloud 22 to 23 and want profile to
18+ be disabled by default for all users, you may run the ``occ `` command below
19+ before upgrading or upgrade first then switch the toggle in Basic settings
20+ before letting any users log in.
21+
22+ ::
23+
24+ occ config:app:set settings profile_enabled_by_default --value="0"
25+
26+ Please refer to :doc: `../configuration_server/occ_command ` for all available
27+ ``occ `` commands.
28+
29+ To disable profile globally add the following line to your ``config.php ``
30+
31+ ::
32+
33+ 'profile.enabled' => false,
34+
35+ Please refer to :doc: `../configuration_server/config_sample_php_parameters ` for
36+ all available ``config.php `` options.
You can’t perform that action at this time.
0 commit comments