From c401e8338b5cf4bf3593a2b6f7209c40d1b46c5b Mon Sep 17 00:00:00 2001 From: James Lopez Date: Fri, 26 Feb 2016 10:40:30 +0100 Subject: updated internal.rb and spec based on MR feedback --- lib/api/internal.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/api/internal.rb') diff --git a/lib/api/internal.rb b/lib/api/internal.rb index c7705aeb59a..2200208b946 100644 --- a/lib/api/internal.rb +++ b/lib/api/internal.rb @@ -16,7 +16,7 @@ module API # helpers do - def wiki + def wiki? @wiki ||= params[:project].end_with?('.wiki') && !Project.find_with_namespace(params[:project]) end @@ -38,12 +38,12 @@ 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. - project_path.chomp!('.wiki') if wiki + project_path.chomp!('.wiki') if wiki? project = Project.find_with_namespace(project_path) access = - if wiki + if wiki? Gitlab::GitAccessWiki.new(actor, project) else Gitlab::GitAccess.new(actor, project) -- cgit v1.2.1