aboutsummaryrefslogtreecommitdiff
path: root/routes/routes.go
diff options
context:
space:
mode:
authorGabriel A. Giovanini <mail@gabrielgio.me>2022-06-16 22:09:39 +0200
committerGabriel A. Giovanini <mail@gabrielgio.me>2022-06-16 22:09:39 +0200
commitdb7e822dda56d32135eca6d3e3211a50cf93d31a (patch)
treea3cdebdb6befe370b66dafd13340d533940c6467 /routes/routes.go
parentd06f6e1398c5dedb3359ff929c5aaf7317c73ce1 (diff)
downloadmdir-db7e822dda56d32135eca6d3e3211a50cf93d31a.tar.gz
mdir-db7e822dda56d32135eca6d3e3211a50cf93d31a.tar.bz2
mdir-db7e822dda56d32135eca6d3e3211a50cf93d31a.zip
feat: Add one more state
Add a new state to the worker so it can better report what is happening. Also added a status report in the index page.
Diffstat (limited to 'routes/routes.go')
-rw-r--r--routes/routes.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routes/routes.go b/routes/routes.go
index a609019..79264c5 100644
--- a/routes/routes.go
+++ b/routes/routes.go
@@ -29,5 +29,6 @@ func HandleRequests() {
r.GET("entries/:id", env.GetEntry)
r.POST("entries/:id", env.UpdateEntry)
r.DELETE("entries/:id", env.DeleteEntry)
+ r.GET("jobs/", env.GetJobs)
r.Run(":8000")
}