From d377948931fddc27b51993b0400af7385e15a8b4 Mon Sep 17 00:00:00 2001 From: James Lopez Date: Wed, 24 Feb 2016 15:54:36 +0100 Subject: fix for projects ending in .wiki --- lib/api/internal.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'lib/api/internal.rb') diff --git a/lib/api/internal.rb b/lib/api/internal.rb index e38736fc28b..c7705aeb59a 100644 --- a/lib/api/internal.rb +++ b/lib/api/internal.rb @@ -14,6 +14,14 @@ module API # ref - branch name # forced_push - forced_push # + + helpers do + def wiki + @wiki ||= params[:project].end_with?('.wiki') && + !Project.find_with_namespace(params[:project]) + end + end + post "/allowed" do status 200 @@ -30,7 +38,6 @@ module API # Strip out the .wiki from the pathname before finding the # project. This applies the correct project permissions to # the wiki repository as well. - wiki = project_path.end_with?('.wiki') project_path.chomp!('.wiki') if wiki project = Project.find_with_namespace(project_path) -- cgit v1.2.1