From e12dd97ac4ce62cc833cf0db1fa2ab479875759a Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Fri, 13 May 2022 12:51:51 +0000 Subject: [PATCH] chore: un-hide autostart and autostop commands --- cli/autostart.go | 1 - cli/autostop.go | 1 - 2 files changed, 2 deletions(-) diff --git a/cli/autostart.go b/cli/autostart.go index b2c3fe37a0596..87b2e7d707eca 100644 --- a/cli/autostart.go +++ b/cli/autostart.go @@ -23,7 +23,6 @@ func autostart() *cobra.Command { Short: "schedule a workspace to automatically start at a regular time", Long: autostartDescriptionLong, Example: "coder autostart enable my-workspace --minute 30 --hour 9 --days 1-5 --tz Europe/Dublin", - Hidden: true, } autostartCmd.AddCommand(autostartEnable()) diff --git a/cli/autostop.go b/cli/autostop.go index e344338707a50..08923754c3989 100644 --- a/cli/autostop.go +++ b/cli/autostop.go @@ -22,7 +22,6 @@ func autostop() *cobra.Command { Short: "schedule a workspace to automatically stop at a regular time", Long: autostopDescriptionLong, Example: "coder autostop enable my-workspace --minute 0 --hour 18 --days 1-5 -tz Europe/Dublin", - Hidden: true, } autostopCmd.AddCommand(autostopEnable())