mirror of
https://gitea.com/jolheiser/sip
synced 2024-11-22 19:51:58 +01:00
bb773780df
Fix CI test Fix origin names in PR create Add aliases for new issue/PR and fix issues search Update beaver and squash some bugs Signed-off-by: jolheiser <john.olheiser@gmail.com> Co-authored-by: jolheiser <john.olheiser@gmail.com> Reviewed-on: https://gitea.com/jolheiser/sip/pulls/6
30 lines
645 B
Go
30 lines
645 B
Go
package cmd
|
|
|
|
import (
|
|
"gitea.com/jolheiser/sip/modules/config"
|
|
"github.com/urfave/cli/v2"
|
|
"go.jolheiser.com/beaver"
|
|
"go.jolheiser.com/beaver/color"
|
|
)
|
|
|
|
var Tokens = cli.Command{
|
|
Name: "tokens",
|
|
Aliases: []string{"token"},
|
|
Usage: "Manage access tokens",
|
|
Action: doTokenList,
|
|
Subcommands: []*cli.Command{
|
|
&TokensAdd,
|
|
&TokensRemove,
|
|
},
|
|
}
|
|
|
|
func doTokenList(ctx *cli.Context) error {
|
|
if len(config.Tokens) == 0 {
|
|
beaver.Errorf("No tokens found! Add one with %s", color.FgMagenta.Format("sip token create"))
|
|
}
|
|
for idx, token := range config.Tokens {
|
|
beaver.Infof("%d. %s (%s)", idx+1, token.Name, token.URL)
|
|
}
|
|
return nil
|
|
}
|