aboutsummaryrefslogblamecommitdiffstats
path: root/commands/bug/bug_title.go
blob: af959fb734efb3824fa66377d48e14a6ad3050b1 (plain) (tree)
1
2
3
4
5
6
7
8
9




                                


                                                         
                                                          






                                                                                               
                                                      

         
                                                   




                                                         
                                                       









                                   
package bugcmd

import (
	"github.com/spf13/cobra"

	"github.com/MichaelMure/git-bug/commands/execenv"
)

func newBugTitleCommand(env *execenv.Env) *cobra.Command {
	cmd := &cobra.Command{
		Use:     "title [BUG_ID]",
		Short:   "Display the title of a bug",
		PreRunE: execenv.LoadBackend(env),
		RunE: execenv.CloseBackend(env, func(cmd *cobra.Command, args []string) error {
			return runBugTitle(env, args)
		}),
		ValidArgsFunction: BugCompletion(env),
	}

	cmd.AddCommand(newBugTitleEditCommand(env))

	return cmd
}

func runBugTitle(env *execenv.Env, args []string) error {
	b, _, err := ResolveSelected(env.Backend, args)
	if err != nil {
		return err
	}

	snap := b.Snapshot()

	env.Out.Println(snap.Title)

	return nil
}