Commit 5e5a3385 authored by Gabriel Mazetto's avatar Gabriel Mazetto

Make disk_path keyword argument and optional

parent 603b86ec
......@@ -479,7 +479,7 @@ class Project < ActiveRecord::Base
end
def repository
@repository ||= Repository.new(full_path, disk_path, self)
@repository ||= Repository.new(full_path, self, disk_path: disk_path)
end
def container_registry_url
......@@ -979,9 +979,8 @@ class Project < ActiveRecord::Base
# Expires various caches before a project is renamed.
def expire_caches_before_rename(old_path)
# TODO: if we start using UUIDs for cache, we don't need to do this HACK anymore
repo = Repository.new(old_path, old_path, self)
wiki = Repository.new("#{old_path}.wiki", "#{old_path}.wiki", self)
repo = Repository.new(old_path, self)
wiki = Repository.new("#{old_path}.wiki", self)
if repo.exists?
repo.before_delete
......
......@@ -151,7 +151,7 @@ class ProjectWiki
end
def repository
@repository ||= Repository.new(full_path, disk_path, @project)
@repository ||= Repository.new(full_path, @project, disk_path: disk_path)
end
def default_branch
......
......@@ -59,9 +59,9 @@ class Repository
end
end
def initialize(full_path, disk_path, project)
def initialize(full_path, project, disk_path: nil)
@full_path = full_path
@disk_path = disk_path
@disk_path = disk_path || full_path
@project = project
end
......
......@@ -128,7 +128,7 @@ module Projects
def flush_caches(project)
project.repository.before_delete
Repository.new(wiki_path, repo_path, project).before_delete
Repository.new(wiki_path, project, disk_path: repo_path).before_delete
end
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment