fix: show remotes and replications flags in auth create (#374)

This commit is contained in:
Dane Strandboge 2022-08-03 16:49:45 -05:00 committed by GitHub
parent 826e03f8b2
commit 75e3606e87
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -48,9 +48,7 @@ func helpText(perm string) struct{ readHelp, writeHelp string } {
func hidden(perm string) bool {
var hiddenTypes = map[string]struct{}{
"functions": {},
"remotes": {},
"replications": {},
"functions": {},
}
_, ok := hiddenTypes[perm]
return ok