diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-22 15:54:00 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-10-22 15:54:00 +0000 |
commit | f4522aeba7069d8cb9c14b0a0b7084a377ffafe7 (patch) | |
tree | 40374c3c29543f62f09adf98ed58efe6a2eafe37 /app/controllers | |
parent | 40f1b0f3f32a80ebc9da2bc5810ed8e3d76d31b5 (diff) | |
download | redmine-f4522aeba7069d8cb9c14b0a0b7084a377ffafe7.tar.gz redmine-f4522aeba7069d8cb9c14b0a0b7084a377ffafe7.zip |
code cleanup: rubocop: fix Layout/AccessModifierIndentation in app/controllers/wiki_controller.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@18831 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/wiki_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb index 4c96221df..423f94f98 100644 --- a/app/controllers/wiki_controller.rb +++ b/app/controllers/wiki_controller.rb @@ -336,7 +336,7 @@ class WikiController < ApplicationController redirect_to :action => 'show', :id => @page.title, :project_id => @project end -private + private def find_wiki @project = Project.find(params[:project_id]) |