FIX: Make find_repos public

This commit is contained in:
Jarek Radosz 2023-02-07 01:36:51 +01:00
parent 2589824656
commit 516e8b7a1d
1 changed files with 2 additions and 2 deletions

View File

@ -154,8 +154,6 @@ module DockerManager
render plain: ps_output
end
private
def find_repos(path, upgrading: false)
return DockerManager::GitRepo.find(path) unless path == "all"
@ -169,6 +167,8 @@ module DockerManager
end
end
private
def respond_progress(logs: "", percentage: 0)
render json: { progress: { logs: logs, percentage: percentage } }
end