From 4259f63fbf4b494b00c3e733e240643fcf9847a1 Mon Sep 17 00:00:00 2001 From: yanxd Date: Wed, 9 Jul 2014 14:53:29 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A2=84=E8=A7=88=E5=9C=A8issue=E5=92=8Cnew?= =?UTF-8?q?=E9=87=8C=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/controllers/previews_controller.rb | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/app/controllers/previews_controller.rb b/app/controllers/previews_controller.rb index 579f8caa8..5ffebcb10 100644 --- a/app/controllers/previews_controller.rb +++ b/app/controllers/previews_controller.rb @@ -16,11 +16,10 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. class PreviewsController < ApplicationController - before_filter :find_project, :find_attachments, :find_contest, except: [:contestnotification] + before_filter :find_project, :find_attachments, except: :contestnotification def issue @issue = @project.issues.find_by_id(params[:id]) unless params[:id].blank? - @issue = @contest.issues.find_by_id(params[:id]) unless params[:id].blank? if @issue @description = params[:issue] && params[:issue][:description] if @description && @description.gsub(/(\r?\n|\n\r?)/, "\n") == @issue.description.to_s.gsub(/(\r?\n|\n\r?)/, "\n") @@ -65,12 +64,4 @@ class PreviewsController < ApplicationController render :partial => 'common/preview' end - private - def find_contest - contest_id = (params[:issue] && params[:issue][:contest_id]) || params[:contest_id] - @contest = Contest.find(contest_id) - rescue ActiveRecord::RecordNotFound - render_404 - end - end