authorize_resource
+ before_action :require_moderator_for_unredacted_history
around_action :web_timeout
def show
rescue ActiveRecord::RecordNotFound
render :action => "not_found", :status => :not_found
end
+
+ private
+
+ def require_moderator_for_unredacted_history
+ deny_access(nil) if params[:show_redactions] && !current_user&.moderator?
+ end
end