summaryrefslogtreecommitdiff
path: root/app/models/project.rb
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-01-17 13:50:18 -0800
committerStan Hu <stanhu@gmail.com>2019-02-05 21:33:10 -0800
commitb103f61450a0553a4a266bd394ae6d6f3c4d10b1 (patch)
tree8b32b44c235e45bc89b74f23844d3c1b89ab861b /app/models/project.rb
parent1af22dbe5c4dad1217199ac5e9282dbe26d39aca (diff)
downloadgitlab-ce-b103f61450a0553a4a266bd394ae6d6f3c4d10b1.tar.gz
Add convenience methods for creating project and Wiki repositories
This makes it easier to access other project arguments in the future.
Diffstat (limited to 'app/models/project.rb')
-rw-r--r--app/models/project.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/project.rb b/app/models/project.rb
index e5edaa5eaac..8f746f6e094 100644
--- a/app/models/project.rb
+++ b/app/models/project.rb
@@ -1288,7 +1288,7 @@ class Project < ActiveRecord::Base
# Forked import is handled asynchronously
return if forked? && !force
- if gitlab_shell.create_repository(repository_storage, disk_path, full_path)
+ if gitlab_shell.create_project_repository(self)
repository.after_create
true
else