Files
photoprism/internal/commands/auth_jwt.go
2025-09-26 02:38:49 +02:00

17 lines
410 B
Go

package commands
import "github.com/urfave/cli/v2"
// AuthJWTCommands groups JWT-related auth helpers under photoprism auth jwt.
var AuthJWTCommands = &cli.Command{
Name: "jwt",
Usage: "JWT issuance and diagnostics",
Hidden: true, // Required for cluster-management only.
Subcommands: []*cli.Command{
AuthJWTIssueCommand,
AuthJWTInspectCommand,
AuthJWTKeysCommand,
AuthJWTStatusCommand,
},
}