chore: remove org context switcher in the cli (#13674)

* chore: remove org context switcher in the cli
This commit is contained in:
Steven Masley
2024-07-01 11:04:45 -10:00
committed by GitHub
parent 4a0fd7466c
commit 5bf46f360a
52 changed files with 353 additions and 362 deletions
+3 -1
View File
@@ -15,6 +15,7 @@ import (
)
func (r *RootCmd) templateDelete() *serpent.Command {
orgContext := NewOrganizationContext()
client := new(codersdk.Client)
cmd := &serpent.Command{
Use: "delete [name...]",
@@ -32,7 +33,7 @@ func (r *RootCmd) templateDelete() *serpent.Command {
templates = []codersdk.Template{}
)
organization, err := CurrentOrganization(r, inv, client)
organization, err := orgContext.Selected(inv, client)
if err != nil {
return err
}
@@ -81,6 +82,7 @@ func (r *RootCmd) templateDelete() *serpent.Command {
return nil
},
}
orgContext.AttachOptions(cmd)
return cmd
}