aboutsummaryrefslogtreecommitdiffstats
path: root/commands/status_close.go
blob: 8541aa0b6426fa634e31548fd33d2acd80fe78e2 (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
package commands

import (
	_select "github.com/MichaelMure/git-bug/commands/select"
	"github.com/spf13/cobra"
)

func newStatusCloseCommand() *cobra.Command {
	env := newEnv()

	cmd := &cobra.Command{
		Use:     "close [ID]",
		Short:   "Mark a bug as closed.",
		PreRunE: loadBackendEnsureUser(env),
		RunE: closeBackend(env, func(cmd *cobra.Command, args []string) error {
			return runStatusClose(env, args)
		}),
	}

	return cmd
}

func runStatusClose(env *Env, args []string) error {
	b, args, err := _select.ResolveBug(env.backend, args)
	if err != nil {
		return err
	}

	_, err = b.Close()
	if err != nil {
		return err
	}

	return b.Commit()
}