summaryrefslogtreecommitdiff
path: root/app/graphql/types/customer_relations/contact_state_enum.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-08-18 08:17:02 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2022-08-18 08:17:02 +0000
commitb39512ed755239198a9c294b6a45e65c05900235 (patch)
treed234a3efade1de67c46b9e5a38ce813627726aa7 /app/graphql/types/customer_relations/contact_state_enum.rb
parentd31474cf3b17ece37939d20082b07f6657cc79a9 (diff)
downloadgitlab-ce-b39512ed755239198a9c294b6a45e65c05900235.tar.gz
Add latest changes from gitlab-org/gitlab@15-3-stable-eev15.3.0-rc42
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