Display worker url in listWorkers

This commit is contained in:
jiegec 2020-09-14 14:50:12 +08:00
parent 984f8a1eb5
commit 3fd71d777b

View File

@ -204,6 +204,8 @@ func (s *Manager) listWorkers(c *gin.Context) {
workerInfos = append(workerInfos,
WorkerStatus{
ID: w.ID,
URL: w.URL,
Token: "REDACTED",
LastOnline: w.LastOnline,
LastRegister: w.LastRegister,
})