(self)
| 248 | ) |
| 249 | |
| 250 | def get_status(self): |
| 251 | args = get_args() |
| 252 | if args.status_page_password is None: |
| 253 | abort(404) |
| 254 | |
| 255 | return render_template('status.html') |
| 256 | |
| 257 | def post_status(self): |
| 258 | args = get_args() |
nothing calls this directly
no test coverage detected