aboutsummaryrefslogtreecommitdiffstats
path: root/commands/bridge_token_rm.go
diff options
context:
space:
mode:
authorAmine <hilalyamine@gmail.com>2019-09-18 21:00:07 +0200
committeramine <hilalyamine@gmail.com>2019-11-09 13:25:07 +0100
commit967e168333a7c3057cf77f9c3f890ea1bbf7a1df (patch)
treec43aa8eedfece818a34c06d3798b353c09f19bcf /commands/bridge_token_rm.go
parent9370e1292b99bc443fe9128d670f36a94f996ca9 (diff)
downloadgit-bug-967e168333a7c3057cf77f9c3f890ea1bbf7a1df.tar.gz
bridge/core: use token id instead of name
commands: add bridge token rm/add commands: improve bridge token printing
Diffstat (limited to 'commands/bridge_token_rm.go')
-rw-r--r--commands/bridge_token_rm.go29
1 files changed, 29 insertions, 0 deletions
diff --git a/commands/bridge_token_rm.go b/commands/bridge_token_rm.go
new file mode 100644
index 00000000..7fd79126
--- /dev/null
+++ b/commands/bridge_token_rm.go
@@ -0,0 +1,29 @@
+package commands
+
+import (
+ "github.com/spf13/cobra"
+
+ "github.com/MichaelMure/git-bug/bridge/core"
+)
+
+func runBridgeTokenRm(cmd *cobra.Command, args []string) error {
+ err := core.RemoveToken(repo, args[0])
+ if err == nil {
+ return nil
+ }
+
+ err = core.RemoveGlobalToken(repo, args[0])
+ return err
+}
+
+var bridgeTokenRmCmd = &cobra.Command{
+ Use: "rm",
+ Short: "Configure and use bridge tokens.",
+ PreRunE: loadRepo,
+ RunE: runBridgeTokenRm,
+ Args: cobra.ExactArgs(1),
+}
+
+func init() {
+ bridgeTokenCmd.AddCommand(bridgeTokenRmCmd)
+}