21 lines
		
	
	
		
			502 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			502 B
		
	
	
	
		
			Ruby
		
	
	
	
| # frozen_string_literal: true
 | |
| 
 | |
| module Gitlab
 | |
|   module Git
 | |
|     class LfsChanges
 | |
|       def initialize(repository, newrev = nil)
 | |
|         @repository = repository
 | |
|         @newrev = newrev
 | |
|       end
 | |
| 
 | |
|       def new_pointers(object_limit: nil, not_in: nil, dynamic_timeout: nil)
 | |
|         @repository.gitaly_blob_client.get_new_lfs_pointers(@newrev, object_limit, not_in, dynamic_timeout)
 | |
|       end
 | |
| 
 | |
|       def all_pointers
 | |
|         @repository.gitaly_blob_client.get_all_lfs_pointers
 | |
|       end
 | |
|     end
 | |
|   end
 | |
| end
 |