feat(dashboard): admin can now view task detailed steps

This commit is contained in:
Aaron Liu
2025-05-20 10:45:50 +08:00
parent a10a008ed7
commit 2fac086127
3 changed files with 4 additions and 1 deletions

View File

@@ -30,6 +30,7 @@ type ListTaskResponse struct {
type GetTaskResponse struct {
*ent.Task
UserHashID string `json:"user_hash_id,omitempty"`
TaskHashID string `json:"task_hash_id,omitempty"`
Summary *queue.Summary `json:"summary,omitempty"`
Node *ent.Node `json:"node,omitempty"`
}