Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-02-04 15:09:25 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-02-04 15:09:25 +0300
commitf1500a385abba1f03c0eadc3c6a95ea532030b4c (patch)
tree75888a5073d3a09a9181c3b61987f2787a68ef92 /doc/administration/timezone.md
parent72241c5e0a5ced1416fcf69ed1a6d8f57b9bf3e2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/administration/timezone.md')
-rw-r--r--doc/administration/timezone.md15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/administration/timezone.md b/doc/administration/timezone.md
index 798e7f5050c..6f460ed0ea8 100644
--- a/doc/administration/timezone.md
+++ b/doc/administration/timezone.md
@@ -41,3 +41,18 @@ After adding the configuration parameter, reconfigure and restart your GitLab in
gitlab-ctl reconfigure
gitlab-ctl restart
```
+
+## Changing time zone per user
+
+To allow users to change the time zone in their profile, the feature flag `user_time_settings` should be enabled:
+
+1. [Start a Rails console session](operations/rails_console.md).
+1. Enable the feature flag:
+
+ ```ruby
+ Feature.enable(:user_time_settings)
+ ```
+
+1. You should now be able to see the timezone dropdown in the users' **Settings > Profile** page.
+
+ ![User Time Zone Settings](img/time_zone_settings.png)