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/snippets/blob_action_input_type.rb')
-rw-r--r--app/graphql/types/snippets/blob_action_input_type.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/graphql/types/snippets/blob_action_input_type.rb b/app/graphql/types/snippets/blob_action_input_type.rb
index 13eade3dcc4..45dc4be8451 100644
--- a/app/graphql/types/snippets/blob_action_input_type.rb
+++ b/app/graphql/types/snippets/blob_action_input_type.rb
@@ -10,15 +10,15 @@ module Types
description: 'Type of input action.',
required: true
- argument :previous_path, GraphQL::STRING_TYPE,
+ argument :previous_path, GraphQL::Types::String,
description: 'Previous path of the snippet file.',
required: false
- argument :file_path, GraphQL::STRING_TYPE,
+ argument :file_path, GraphQL::Types::String,
description: 'Path of the snippet file.',
required: true
- argument :content, GraphQL::STRING_TYPE,
+ argument :content, GraphQL::Types::String,
description: 'Snippet file content.',
required: false
end