(self, user, execution_id)
| 492 | @check_authorization |
| 493 | @inject_user |
| 494 | def get(self, user, execution_id): |
| 495 | running = self.application.execution_service.is_running(execution_id, user) |
| 496 | self.write(external_model.running_flag_to_status(running)) |
| 497 | |
| 498 | |
| 499 | class AuthorizedStaticFileHandler(BaseStaticHandler): |
nothing calls this directly
no test coverage detected