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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/customer_relations/contact_state_enum.rb')
-rw-r--r--app/graphql/types/customer_relations/contact_state_enum.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/graphql/types/customer_relations/contact_state_enum.rb b/app/graphql/types/customer_relations/contact_state_enum.rb
index 445d2a41401..1e5cae8528f 100644
--- a/app/graphql/types/customer_relations/contact_state_enum.rb
+++ b/app/graphql/types/customer_relations/contact_state_enum.rb
@@ -5,12 +5,16 @@ module Types
class ContactStateEnum < BaseEnum
graphql_name 'CustomerRelationsContactState'
+ value 'all',
+ description: "All available contacts.",
+ value: :all
+
value 'active',
- description: "Active contact.",
+ description: "Active contacts.",
value: :active
value 'inactive',
- description: "Inactive contact.",
+ description: "Inactive contacts.",
value: :inactive
end
end