Adds published-only flag to the list command
This commit is contained in:
parent
ce96e712e4
commit
8494b273dd
2 changed files with 10 additions and 4 deletions
10
cmd/list.go
10
cmd/list.go
|
@ -7,15 +7,21 @@ import (
|
|||
)
|
||||
|
||||
func ListCmd() *cobra.Command {
|
||||
return &cobra.Command{
|
||||
cmd := &cobra.Command{
|
||||
Use: "list",
|
||||
Short: "Prints a list of the campaign's tickets",
|
||||
Long: "Prints a list of the campaign's tickets with their statuses and external ids",
|
||||
Args: cobra.NoArgs,
|
||||
Run: withApp(listCmdF),
|
||||
}
|
||||
|
||||
cmd.Flags().BoolP("published-only", "p", false, "list only published tickets")
|
||||
|
||||
return cmd
|
||||
}
|
||||
|
||||
func listCmdF(a *app.App, cmd *cobra.Command, _ []string) {
|
||||
a.Campaign.PrintList()
|
||||
publishedOnly, _ := cmd.Flags().GetBool("published-only")
|
||||
|
||||
a.Campaign.PrintList(publishedOnly)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue