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/tree/blob_type.rb')
-rw-r--r--app/graphql/types/tree/blob_type.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/graphql/types/tree/blob_type.rb b/app/graphql/types/tree/blob_type.rb
index 284542e1d2a..3db64d812c5 100644
--- a/app/graphql/types/tree/blob_type.rb
+++ b/app/graphql/types/tree/blob_type.rb
@@ -10,14 +10,14 @@ module Types
present_using BlobPresenter
field :lfs_oid, GraphQL::Types::String, null: true,
- calls_gitaly: true,
- description: 'LFS ID of the blob.'
+ calls_gitaly: true,
+ description: 'LFS ID of the blob.'
field :mode, GraphQL::Types::String, null: true,
- description: 'Blob mode in numeric format.'
+ description: 'Blob mode in numeric format.'
field :web_path, GraphQL::Types::String, null: true,
- description: 'Web path of the blob.'
+ description: 'Web path of the blob.'
field :web_url, GraphQL::Types::String, null: true,
- description: 'Web URL of the blob.'
+ description: 'Web URL of the blob.'
def lfs_oid
Gitlab::Graphql::Loaders::BatchLfsOidLoader.new(object.repository, object.id).find