summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_action_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/commit_action_type.rb')
-rw-r--r--app/graphql/types/commit_action_type.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/commit_action_type.rb b/app/graphql/types/commit_action_type.rb
index cc1f45478e4..b170134b388 100644
--- a/app/graphql/types/commit_action_type.rb
+++ b/app/graphql/types/commit_action_type.rb
@@ -4,15 +4,15 @@ module Types
class CommitActionType < BaseInputObject
argument :action, type: Types::CommitActionModeEnum, required: true,
description: 'The action to perform, create, delete, move, update, chmod.'
- argument :file_path, type: GraphQL::STRING_TYPE, required: true,
+ argument :file_path, type: GraphQL::Types::String, required: true,
description: 'Full path to the file.'
- argument :content, type: GraphQL::STRING_TYPE, required: false,
+ argument :content, type: GraphQL::Types::String, required: false,
description: 'Content of the file.'
- argument :previous_path, type: GraphQL::STRING_TYPE, required: false,
+ argument :previous_path, type: GraphQL::Types::String, required: false,
description: 'Original full path to the file being moved.'
- argument :last_commit_id, type: GraphQL::STRING_TYPE, required: false,
+ argument :last_commit_id, type: GraphQL::Types::String, required: false,
description: 'Last known file commit ID.'
- argument :execute_filemode, type: GraphQL::BOOLEAN_TYPE, required: false,
+ argument :execute_filemode, type: GraphQL::Types::Boolean, required: false,
description: 'Enables/disables the execute flag on the file.'
argument :encoding, type: Types::CommitEncodingEnum, required: false,
description: 'Encoding of the file. Default is text.'