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

pipeline_schedules_helper.rb « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e166106b324cdd2bbf936f8069237e8ace6fce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module PipelineSchedulesHelper
  def timezone_data
    ActiveSupport::TimeZone.all.map do |timezone|
      {
        name: timezone.name,
        offset: timezone.now.utc_offset,
        identifier: timezone.tzinfo.identifier
      }
    end
  end
end