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/packages/package_file_type.rb')
-rw-r--r--app/graphql/types/packages/package_file_type.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/app/graphql/types/packages/package_file_type.rb b/app/graphql/types/packages/package_file_type.rb
index e9e38559626..f77c40de8d8 100644
--- a/app/graphql/types/packages/package_file_type.rb
+++ b/app/graphql/types/packages/package_file_type.rb
@@ -10,12 +10,12 @@ module Types
field :id, ::Types::GlobalIDType[::Packages::PackageFile], null: false, description: 'ID of the file.'
field :created_at, Types::TimeType, null: false, description: 'The created date.'
field :updated_at, Types::TimeType, null: false, description: 'The updated date.'
- field :size, GraphQL::STRING_TYPE, null: false, description: 'Size of the package file.'
- field :file_name, GraphQL::STRING_TYPE, null: false, description: 'Name of the package file.'
- field :download_path, GraphQL::STRING_TYPE, null: false, description: 'Download path of the package file.'
- field :file_md5, GraphQL::STRING_TYPE, null: true, description: 'Md5 of the package file.'
- field :file_sha1, GraphQL::STRING_TYPE, null: true, description: 'Sha1 of the package file.'
- field :file_sha256, GraphQL::STRING_TYPE, null: true, description: 'Sha256 of the package file.'
+ field :size, GraphQL::Types::String, null: false, description: 'Size of the package file.'
+ field :file_name, GraphQL::Types::String, null: false, description: 'Name of the package file.'
+ field :download_path, GraphQL::Types::String, null: false, description: 'Download path of the package file.'
+ field :file_md5, GraphQL::Types::String, null: true, description: 'Md5 of the package file.'
+ field :file_sha1, GraphQL::Types::String, null: true, description: 'Sha1 of the package file.'
+ field :file_sha256, GraphQL::Types::String, null: true, description: 'Sha256 of the package file.'
field :file_metadata, Types::Packages::FileMetadataType, null: true,
description: 'File metadata.'