diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-13 16:45:01 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-09-13 16:45:01 +0000 |
commit | 455abea32042a9e612b72cdf88d158fa72cb7144 (patch) | |
tree | 4c1f313ed96bcf98817840520160cea1ad86b13e /app/controllers/wiki_controller.rb | |
parent | cc643ce932b2abdc56c4d1933c02806ca57ddefa (diff) | |
download | redmine-455abea32042a9e612b72cdf88d158fa72cb7144.tar.gz redmine-455abea32042a9e612b72cdf88d158fa72cb7144.zip |
Adds a permission 'view wiki edits' so that wiki history can be hidden to certain users (#1154).
A migration automatically adds this permission to roles that were allowed to view wiki pages.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@1815 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/controllers/wiki_controller.rb')
-rw-r--r-- | app/controllers/wiki_controller.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/wiki_controller.rb b/app/controllers/wiki_controller.rb index 46df2931e..5c8158db8 100644 --- a/app/controllers/wiki_controller.rb +++ b/app/controllers/wiki_controller.rb @@ -38,6 +38,11 @@ class WikiController < ApplicationController end return end + if params[:version] && !User.current.allowed_to?(:view_wiki_edits, @project) + # Redirects user to the current version if he's not allowed to view previous versions + redirect_to :version => nil + return + end @content = @page.content_for_version(params[:version]) if params[:export] == 'html' export = render_to_string :action => 'export', :layout => false |