diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 14:50:03 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-11-06 16:00:04 +0100 |
commit | ebf38065f8a0c0c3d1a3a7ce2a4caaaad712432c (patch) | |
tree | 00ca89c63f4ce48566202c6c32f76fe1ad3de4d3 /lib/apiv1/exec.go | |
parent | 8d3f51e52894d46a4a92a944bc09f4ceaa1abf51 (diff) |
Added short project ID name support if not ambiguous.
Diffstat (limited to 'lib/apiv1/exec.go')
-rw-r--r-- | lib/apiv1/exec.go | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/lib/apiv1/exec.go b/lib/apiv1/exec.go index 0167196..8ffad07 100644 --- a/lib/apiv1/exec.go +++ b/lib/apiv1/exec.go @@ -105,15 +105,19 @@ func (s *APIService) execCmd(c *gin.Context) { } // Allow to pass id in url (/exec/:id) or as JSON argument - id := c.Param("id") - if id == "" { - id = args.ID + idArg := c.Param("id") + if idArg == "" { + idArg = args.ID } - if id == "" { + if idArg == "" { common.APIError(c, "Invalid id") return } - + id, err := s.mfolders.ResolveID(idArg) + if err != nil { + common.APIError(c, err.Error()) + return + } f := s.mfolders.Get(id) if f == nil { common.APIError(c, "Unknown id") |