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

freeze_period_type.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6a3f2ed8fa4ffc8cbc966f16bd439160cbcdd4d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# frozen_string_literal: true

module Types
  module Ci
    class FreezePeriodType < BaseObject
      graphql_name 'CiFreezePeriod'
      description 'Represents a deployment freeze window of a project'

      authorize :read_freeze_period

      present_using ::Ci::FreezePeriodPresenter

      field :status, Types::Ci::FreezePeriodStatusEnum,
            description: 'Freeze period status.',
            null: false

      field :start_cron, GraphQL::Types::String,
            description: 'Start of the freeze period in cron format.',
            null: false,
            method: :freeze_start

      field :end_cron, GraphQL::Types::String,
            description: 'End of the freeze period in cron format.',
            null: false,
            method: :freeze_end

      field :cron_timezone, GraphQL::Types::String,
            description: 'Time zone for the cron fields, defaults to UTC if not provided.',
            null: true

      field :start_time, Types::TimeType,
            description: 'Timestamp (UTC) of when the current/next active period starts.',
            null: true

      field :end_time, Types::TimeType,
            description: 'Timestamp (UTC) of when the current/next active period ends.',
            null: true,
            method: :time_end_from_now
    end
  end
end