Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2016-12-15 19:36:53 +0300
committerRémy Coutable <remy@rymai.me>2016-12-19 19:35:51 +0300
commit99ddd1dcbed35b642d7bd8a52cc6e5e5453b9f8b (patch)
tree9dd65c4f4cd9d396f4360331bfce519109bab5c1 /app/controllers/import
parent103114e3d73819f76bed9d8ad1bbdb8964875579 (diff)
Modify GithubImport to support Gitea
The reason is that Gitea plan to be GitHub-compatible so it makes sense to just modify GitHubImport a bit for now, and hopefully we can change it to GitHubishImport once Gitea is 100%-compatible. Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'app/controllers/import')
-rw-r--r--app/controllers/import/gitea_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/import/gitea_controller.rb b/app/controllers/import/gitea_controller.rb
index c82a20be04c..3bc21e62a1e 100644
--- a/app/controllers/import/gitea_controller.rb
+++ b/app/controllers/import/gitea_controller.rb
@@ -11,7 +11,7 @@ class Import::GiteaController < Import::GithubController
end
def status
- @gitea_root_url = session[:host_url]
+ @gitea_host_url = session[:host_url]
super
end