aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_auth_rm.go
blob: 17e70625f1b52591ddab1c48108fb60f8c9a7d88 (plain) (blame)
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
package commands

import (
	"fmt"

	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/bridge/core/auth"
)

func runBridgeAuthRm(cmd *cobra.Command, args []string) error {
	cred, err := auth.LoadWithPrefix(repo, args[0])
	if err != nil {
		return err
	}

	err = auth.Remove(repo, cred.ID())
	if err != nil {
		return err
	}

	fmt.Printf("credential %s removed\n", cred.ID())
	return nil
}

var bridgeAuthRmCmd = &cobra.Command{
	Use:     "rm <id>",
	Short:   "Remove a credential.",
	PreRunE: loadRepo,
	RunE:    runBridgeAuthRm,
	Args:    cobra.ExactArgs(1),
}

func init() {
	bridgeAuthCmd.AddCommand(bridgeAuthRmCmd)
}