diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2019-06-11 16:11:21 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2019-06-11 16:11:21 +0200 |
commit | c70f7ec77bdf8469bcb64ba3b235d68320280b9c (patch) | |
tree | d386f5e431f68c95b5a83478755ee542b7859a4e /lib | |
parent | 0899537e2d3bd4b481bd71c04a0186108ad9c39f (diff) | |
download | gitlab-ce-c70f7ec77bdf8469bcb64ba3b235d68320280b9c.tar.gz |
Rename `BatchCommitLoader` to `BatchLfsOidLoader`
Since we're not actually loading commits in that loader, but we're
loading blobs with LFS oids in batch and returning only the oids.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/graphql/loaders/batch_lfs_oid_loader.rb (renamed from lib/gitlab/graphql/loaders/batch_commit_loader.rb) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/graphql/loaders/batch_commit_loader.rb b/lib/gitlab/graphql/loaders/batch_lfs_oid_loader.rb index f410c3195f8..8f34e58a771 100644 --- a/lib/gitlab/graphql/loaders/batch_commit_loader.rb +++ b/lib/gitlab/graphql/loaders/batch_lfs_oid_loader.rb @@ -3,7 +3,7 @@ module Gitlab module Graphql module Loaders - class BatchCommitLoader + class BatchLfsOidLoader def initialize(repository, blob_id) @repository, @blob_id = repository, blob_id end |