Move the objects
method to LfsHelper
so that it is also available to LfsStorageController
It is needed for the `lfs_check_access!` callback when the repository size limit is enabled (EE only).
This commit is contained in:
parent
a3fd8521fb
commit
50f047cadd
2 changed files with 4 additions and 4 deletions
|
@ -31,10 +31,6 @@ class Projects::LfsApiController < Projects::GitHttpClientController
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
def objects
|
|
||||||
@objects ||= (params[:objects] || []).to_a
|
|
||||||
end
|
|
||||||
|
|
||||||
def existing_oids
|
def existing_oids
|
||||||
@existing_oids ||= begin
|
@existing_oids ||= begin
|
||||||
storage_project.lfs_objects.where(oid: objects.map { |o| o['oid'].to_s }).pluck(:oid)
|
storage_project.lfs_objects.where(oid: objects.map { |o| o['oid'].to_s }).pluck(:oid)
|
||||||
|
|
|
@ -30,6 +30,10 @@ module LfsHelper
|
||||||
ci? || lfs_deploy_token? || user_can_download_code? || build_can_download_code?
|
ci? || lfs_deploy_token? || user_can_download_code? || build_can_download_code?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def objects
|
||||||
|
@objects ||= (params[:objects] || []).to_a
|
||||||
|
end
|
||||||
|
|
||||||
def user_can_download_code?
|
def user_can_download_code?
|
||||||
has_authentication_ability?(:download_code) && can?(user, :download_code, project)
|
has_authentication_ability?(:download_code) && can?(user, :download_code, project)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue