Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions cmd/auth.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,11 @@ type JWTClaims struct {

var authCmd = &cobra.Command{
Use: "auth",
Short: "Show current authentication status",
Short: "Show authentication status and manage auth connections",
Long: `Display information about the current authentication state, including logged-in user details and token expiry.
Use --log-level debug to show additional details like user ID and storage method.`,
Use --log-level debug to show additional details like user ID and storage method.

Use "kernel auth connections" to manage managed auth connections for automated login flows.`,
RunE: runAuth,
}

Expand Down