(self, user)
| 683 | @check_authorization |
| 684 | @inject_user |
| 685 | def get(self, user): |
| 686 | history_entries = self.application.execution_logging_service.get_history_entries(user.user_id) |
| 687 | running_script_ids = [] |
| 688 | for entry in history_entries: |
| 689 | if self.application.execution_service.is_running(entry.id, user): |
| 690 | running_script_ids.append(entry.id) |
| 691 | |
| 692 | short_logs = to_short_execution_log(history_entries, running_script_ids) |
| 693 | self.write(json.dumps(short_logs)) |
| 694 | |
| 695 | |
| 696 | class GetLongHistoryEntryHandler(BaseRequestHandler): |
nothing calls this directly
no test coverage detected