From c0f0b0efb48ce87d0e50e362f06d5a0d38aa1177 Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Wed, 17 Aug 2022 12:40:02 +0200 Subject: [PATCH] move the uploads command into a category --- services/storage-users/pkg/command/uploads.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/services/storage-users/pkg/command/uploads.go b/services/storage-users/pkg/command/uploads.go index 0aa7174c34..de208e49b4 100644 --- a/services/storage-users/pkg/command/uploads.go +++ b/services/storage-users/pkg/command/uploads.go @@ -19,8 +19,9 @@ import ( func Uploads(cfg *config.Config) *cli.Command { return &cli.Command{ - Name: "uploads", - Usage: "manage uploads", + Name: "uploads", + Usage: "manage uploads", + Category: "maintenance", Before: func(c *cli.Context) error { if err := parser.ParseConfig(cfg); err != nil { fmt.Printf("%v", err)