-
Notifications
You must be signed in to change notification settings - Fork 117
/
remove.go
44 lines (35 loc) · 957 Bytes
/
remove.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
package whitelist
import (
"fmt"
"github.com/rilldata/rill/cli/pkg/cmdutil"
"github.com/rilldata/rill/cli/pkg/config"
adminv1 "github.com/rilldata/rill/proto/gen/rill/admin/v1"
"github.com/spf13/cobra"
)
func RemoveCmd(cfg *config.Config) *cobra.Command {
removeCmd := &cobra.Command{
Use: "remove <org> <domain>",
Args: cobra.ExactArgs(2),
Short: "Remove whitelist for an org and domain",
RunE: func(cmd *cobra.Command, args []string) error {
ctx := cmd.Context()
client, err := cmdutil.Client(cfg)
if err != nil {
return err
}
defer client.Close()
org := args[0]
domain := args[1]
_, err = client.RemoveWhitelistedDomain(ctx, &adminv1.RemoveWhitelistedDomainRequest{
Organization: org,
Domain: domain,
})
if err != nil {
return err
}
cmdutil.PrintlnSuccess(fmt.Sprintf("Removed whitelist for org %q and domain %q", org, domain))
return nil
},
}
return removeCmd
}