summaryrefslogtreecommitdiff
path: root/app/helpers/ci/pipeline_schedules_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/ci/pipeline_schedules_helper.rb')
-rw-r--r--app/helpers/ci/pipeline_schedules_helper.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/app/helpers/ci/pipeline_schedules_helper.rb b/app/helpers/ci/pipeline_schedules_helper.rb
deleted file mode 100644
index 20e5c90a60e..00000000000
--- a/app/helpers/ci/pipeline_schedules_helper.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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