chore: replace todos with issues (#1066)

This commit is contained in:
G r e y
2022-04-19 12:16:57 -04:00
committed by GitHub
parent 04985a1754
commit 5ce06769cd
10 changed files with 15 additions and 26 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ func workspaceAutostart() *cobra.Command {
Short: "schedule a workspace to automatically start at a regular time",
Long: autostartDescriptionLong,
Example: "coder workspaces autostart enable my-workspace --minute 30 --hour 9 --days 1-5 --tz Europe/Dublin",
Hidden: true, // TODO(cian): un-hide when autostart scheduling implemented
Hidden: true,
}
autostartCmd.AddCommand(workspaceAutostartEnable())
+1 -1
View File
@@ -22,7 +22,7 @@ func workspaceAutostop() *cobra.Command {
Short: "schedule a workspace to automatically stop at a regular time",
Long: autostopDescriptionLong,
Example: "coder workspaces autostop enable my-workspace --minute 0 --hour 18 --days 1-5 -tz Europe/Dublin",
Hidden: true, // TODO(cian): un-hide when autostop scheduling implemented
Hidden: true,
}
autostopCmd.AddCommand(workspaceAutostopEnable())