handler: default base csrf_ignore() to false

This commit is contained in:
Andrew Dolgov 2020-09-15 18:16:33 +03:00
parent 0a142912d3
commit 0706a328a4
1 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ class Handler implements IHandler {
}
function csrf_ignore($method) {
return true;
return false;
}
function before($method) {
@ -20,4 +20,4 @@ class Handler implements IHandler {
return true;
}
}
}