去掉上传的csrf报错

This commit is contained in:
guange 2016-07-19 17:44:27 +08:00
parent 26d4be6518
commit 674c45f1d9
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@
class AttachmentsController < ApplicationController
layout "users_base"
before_filter :verify_authenticity_token, only: [:uploa]
before_filter :find_project, :only => [:show, :download, :thumbnail, :destroy, :delete_homework]#, :except => [:upload, :autocomplete]
before_filter :file_readable, :read_authorize, :only => [:show, :thumbnail]#Modified by young
before_filter :delete_authorize, :only => [:destroy]