| Index: appengine/chromium_status/appengine_module/chromium_status/status.py
|
| diff --git a/appengine/chromium_status/appengine_module/chromium_status/status.py b/appengine/chromium_status/appengine_module/chromium_status/status.py
|
| index 8ab438712c8871376526fad71bbbb788db62b525..ab4272c603bd5d95d70e506cf1e63fe52eb72405 100644
|
| --- a/appengine/chromium_status/appengine_module/chromium_status/status.py
|
| +++ b/appengine/chromium_status/appengine_module/chromium_status/status.py
|
| @@ -314,6 +314,14 @@ class CurrentPage(BasePage):
|
| else:
|
| self._handle()
|
|
|
| + @utils.requires_bot_login
|
| + def post(self):
|
| + """Handles the same get request from a backdoor.
|
| +
|
| + POST to receive the password plaintext without polluting the logs.
|
| + """
|
| + return self._handle()
|
| +
|
| @utils.requires_read_access
|
| def _handle(self):
|
| """Displays the current message in various formats."""
|
|
|