package cli import ( "fmt" "golang.org/x/xerrors" agpl "github.com/coder/coder/cli" "github.com/coder/coder/cli/clibase" "github.com/coder/coder/cli/cliui" "github.com/coder/coder/codersdk" ) func (r *RootCmd) groupDelete() *clibase.Cmd { client := new(codersdk.Client) cmd := &clibase.Cmd{ Use: "delete ", Short: "Delete a user group", Middleware: clibase.Chain( clibase.RequireNArgs(1), r.InitClient(client), ), Handler: func(inv *clibase.Invocation) error { var ( ctx = inv.Context() groupName = inv.Args[0] ) org, err := agpl.CurrentOrganization(inv, client) if err != nil { return xerrors.Errorf("current organization: %w", err) } group, err := client.GroupByOrgAndName(ctx, org.ID, groupName) if err != nil { return xerrors.Errorf("group by org and name: %w", err) } err = client.DeleteGroup(ctx, group.ID) if err != nil { return xerrors.Errorf("delete group: %w", err) } _, _ = fmt.Fprintf(inv.Stdout, "Successfully deleted group %s!\n", cliui.DefaultStyles.Keyword.Render(group.Name)) return nil }, } return cmd }