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

time_zone.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ad6b2d3447ee454733b2bf5e5d745b88a8a756d (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

Time.zone = Gitlab.config.gitlab.time_zone || Time.zone
# The default is normally set by Rails in the
# active_support.initialize_time_zone Railtie, but we need to set it
# here because the config settings aren't available until after that
# runs. We set the default to ensure multi-threaded servers have the
# right value.
Time.zone_default = Time.zone
Rails.application.config.time_zone = Time.zone