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

organization_state_enum.rb « customer_relations « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ecdd7d092adb362ac0e2950b219f160ec65001ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Types
  module CustomerRelations
    class OrganizationStateEnum < BaseEnum
      graphql_name 'CustomerRelationsOrganizationState'

      value 'active',
            description: "Active organization.",
            value: :active

      value 'inactive',
            description: "Inactive organization.",
            value: :inactive
    end
  end
end