Skip to content

Commit 7bc0e2b

Browse files
Hide base-url field from hosted UI
base-url is a dev/testing concern, not user-facing configuration. Mark it WithHidden(true) so it doesn't appear in the hosted UI. Good feedback from Geoff: ConductorOne/baton-trayai#63 (comment)
1 parent 62211e6 commit 7bc0e2b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

pkg/config/config.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ var (
3333
"base-url",
3434
field.WithDisplayName("Base URL"),
3535
field.WithDescription("Override the Zendesk API URL (for testing)"),
36+
field.WithHidden(true),
3637
)
3738

3839
ConfigurationFields = []field.SchemaField{

0 commit comments

Comments
 (0)