summaryrefslogtreecommitdiff
path: root/docs/whatsnew-1.4.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2012-09-19 04:46:01 -0400
committerChris McDonough <chrism@plope.com>2012-09-19 04:46:01 -0400
commit643a83473a6faabd0ff08547a0cbca09e9cdda1c (patch)
tree1825c27d957beff5509940215efbf97931dbe9af /docs/whatsnew-1.4.rst
parentc5680bbd7850c917ba1f1f68134ff4c8d3c37246 (diff)
downloadpyramid-643a83473a6faabd0ff08547a0cbca09e9cdda1c.tar.gz
pyramid-643a83473a6faabd0ff08547a0cbca09e9cdda1c.tar.bz2
pyramid-643a83473a6faabd0ff08547a0cbca09e9cdda1c.zip
A ``check_csrf`` view predicate was added. For example, you can now do
``config.add_view(someview, check_csrf=True)``. When the predicate is checked, if the ``csrf_token`` value in ``request.params`` matches the csrf token in the request's session, the view will be permitted to execute. Otherwise, it will not be permitted to execute.
Diffstat (limited to 'docs/whatsnew-1.4.rst')
-rw-r--r--docs/whatsnew-1.4.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/whatsnew-1.4.rst b/docs/whatsnew-1.4.rst
index 76320f6e6..86bfc7c0a 100644
--- a/docs/whatsnew-1.4.rst
+++ b/docs/whatsnew-1.4.rst
@@ -156,6 +156,12 @@ Minor Feature Additions
- A new :func:`pyramid.session.check_csrf_token` convenience API function was
added.
+- A ``check_csrf`` view predicate was added. For example, you can now do
+ ``config.add_view(someview, check_csrf=True)``. When the predicate is
+ checked, if the ``csrf_token`` value in ``request.params`` matches the csrf
+ token in the request's session, the view will be permitted to execute.
+ Otherwise, it will not be permitted to execute.
+
Backwards Incompatibilities
---------------------------