Added decorator to optionally call the Content-Type processors

The custom Content-Type processors did not respect CherryPy's flag to
optionally not process the request body.
This commit is contained in:
Seth House 2013-03-27 16:32:32 -06:00
parent 69a720b31b
commit 70fe8b3a70

View File

@ -805,10 +805,9 @@ class Login(LowDataAdapter):
class Logout(LowDataAdapter):
def POST(self, **kwargs):
def POST(self):
'''
Destroy the currently active session and expire the session
cookie
Destroy the currently active session and expire the session cookie
.. versionadded:: 0.8.0
'''