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

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

module Ci
  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
end