summaryrefslogtreecommitdiff
path: root/app/graphql/types/commit_action_type.rb
blob: 7674abb11ebc66b6e878535ab16bf9990fa0a64c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Types
  # rubocop: disable Graphql/AuthorizeTypes
  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,
          description: 'Full path to the file'
    argument :content, type: GraphQL::STRING_TYPE, required: false,
             description: 'Content of the file'
    argument :previous_path, type: GraphQL::STRING_TYPE, required: false,
             description: 'Original full path to the file being moved'
    argument :last_commit_id, type: GraphQL::STRING_TYPE, required: false,
             description: 'Last known file commit ID'
    argument :execute_filemode, type: GraphQL::BOOLEAN_TYPE, 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'
  end
  # rubocop: enable Graphql/AuthorizeTypes
end