(self)
| 621 | |
| 622 | class AuthConfigHandler(BaseRequestHandler): |
| 623 | def get(self): |
| 624 | auth = self.application.auth |
| 625 | if not auth.is_enabled(): |
| 626 | raise tornado.web.HTTPError(404) |
| 627 | |
| 628 | self.write(auth.get_client_visible_config()) |
| 629 | |
| 630 | |
| 631 | class LogoutHandler(BaseRequestHandler): |
nothing calls this directly
no test coverage detected