redirect_to helpers.reportable_url(@report.issue.reportable), :notice => t(".successful_report")
else
- redirect_to new_report_path(:reportable_type => @report.issue.reportable_type, :reportable_id => @report.issue.reportable_id), :notice => t(".provide_details")
+ flash[:notice] = t(".provide_details")
+ render :action => "new"
end
end
def default_assigned_role
case issue_params[:reportable_type]
- when "Note" then "moderator"
- when "User" then case report_params[:category]
- when "vandal" then "moderator"
- else "administrator"
- end
- else "administrator"
+ when "Note"
+ "moderator"
+ when "User"
+ case report_params[:category]
+ when "vandal" then "moderator"
+ else "administrator"
+ end
+ else
+ "administrator"
end
end
end