feat(coderd): add experimental tasks logs endpoint (#19958)

Fixes coder/internal#901
This commit is contained in:
Mathias Fredriksson
2025-09-25 18:12:49 +03:00
committed by GitHub
parent 063e8634c7
commit 0bac5a4d5c
5 changed files with 300 additions and 0 deletions
+1
View File
@@ -1020,6 +1020,7 @@ func New(options *Options) *API {
r.Get("/{id}", api.taskGet)
r.Delete("/{id}", api.taskDelete)
r.Post("/{id}/send", api.taskSend)
r.Get("/{id}/logs", api.taskLogs)
r.Post("/", api.tasksCreate)
})
})