diff options
author | Phil Hughes <me@iamphill.com> | 2017-12-14 11:59:01 +0000 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2017-12-14 11:59:01 +0000 |
commit | cbd3ce8f41fc5691a1d23aca0ffe3221ab5d26af (patch) | |
tree | ed843b1c13b5e231abc56a6fc304fea9868d8c73 /lib | |
parent | 9c132216b74258d900d7bbfb88f158d53ede90b7 (diff) | |
download | gitlab-ce-cbd3ce8f41fc5691a1d23aca0ffe3221ab5d26af.tar.gz |
moved lfs_blob_ids method into ExtractsPath modulelfs-badge
Diffstat (limited to 'lib')
-rw-r--r-- | lib/extracts_path.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/extracts_path.rb b/lib/extracts_path.rb index f576ef74603..27c712a84d4 100644 --- a/lib/extracts_path.rb +++ b/lib/extracts_path.rb @@ -135,6 +135,11 @@ module ExtractsPath @tree ||= @repo.tree(@commit.id, @path) end + def lfs_blob_ids + blob_ids = tree.blobs.map(&:id) + @lfs_blob_ids = Gitlab::Git::Blob.batch_lfs_pointers(@project.repository, blob_ids).map(&:id) + end + private # overriden in subclasses, do not remove |