diff --git a/api/v1/resource.go b/api/v1/resource.go index f8935d1b..4297819c 100644 --- a/api/v1/resource.go +++ b/api/v1/resource.go @@ -354,6 +354,8 @@ func replacePathTemplate(path, filename string) string { return fmt.Sprintf("%02d", t.Minute()) case "{second}": return fmt.Sprintf("%02d", t.Second()) + case "{uuid}": + return util.GenUUID() } return s })