briancappello/flask-react-spa

Question, disable csrf for specific endpoint

Opened this issue · 2 comments

Do you have a tip, how to disable csrf for some views?
I try to implement this:
`
from flask_wtf import CSRFProtect
csrf = CSRFProtect()

@csrf.exempt

@api.route(git, '/string:project_name/git-receive-pack', methods=('POST',))

def git_receive_pack(project_name):
`

But decorator doesn't work for me.
Is the a parameter for the api.route?

Off the top of my head I'd guess trying to place the route decorator on the top? Can look more closely when I get to a computer

Did not work for me, not on top, not on bot.