CLI: Update usage descriptions for Boolean command flags

Signed-off-by: Michael Mayer <michael@photoprism.app>
This commit is contained in:
Michael Mayer
2025-08-28 19:10:36 +02:00
parent 68590ab408
commit 0357bc9abd
20 changed files with 120 additions and 88 deletions

View File

@@ -27,12 +27,12 @@ var PasswdCommand = &cli.Command{
&cli.BoolFlag{
Name: "show",
Aliases: []string{"s"},
Usage: "show bcrypt hash of new password",
Usage: "shows bcrypt hash of new password",
},
&cli.BoolFlag{
Name: "remove",
Aliases: []string{"rm"},
Usage: "remove password to disable local authentication",
Usage: "removes password to disable local authentication",
},
},
Action: passwdAction,