()
| 29 | @route("/json/status", method="POST") |
| 30 | @login_required('LIST') |
| 31 | def status(): |
| 32 | try: |
| 33 | status = toDict(PYLOAD.statusServer()) |
| 34 | status['captcha'] = PYLOAD.isCaptchaWaiting() |
| 35 | return status |
| 36 | except: |
| 37 | return HTTPError() |
| 38 | |
| 39 | |
| 40 | @route("/json/links") |
nothing calls this directly
no test coverage detected