-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(cmd): add aliases for database user management #1031
feat(cmd): add aliases for database user management #1031
Conversation
982db6d
to
0e322f7
Compare
cmd/databases.go
Outdated
@@ -142,6 +142,7 @@ var ( | |||
|
|||
databaseListUsers = cli.Command{ | |||
Name: "database-list-users", | |||
Aliases: []string{"database-users-list"}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nitpick (non-blocking): as "database-users-" if our wanted prefix, shouldn't it be the name of the command? and the old name the alias
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep you're right
0e322f7
to
17840fc
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you accepted my nitpick though, you must update the examples as well
17840fc
to
7c1903c
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
7c1903c
to
2eecaf8
Compare
Fixes #1030