aboutsummaryrefslogtreecommitdiffstats
path: root/commands/user
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-18 08:21:08 +0100
committerGitHub <noreply@github.com>2023-01-18 08:21:08 +0100
commit248486708911105e7067cb1061607b712c39a60e (patch)
tree414ad9f66ce05acdb169dcdb033c72ac2793f3c6 /commands/user
parent0290091317deb9e6c0ff99f9217065168620d2f0 (diff)
parent723b3c41470cafd240b0c2f174bc7e1762bc3680 (diff)
downloadgit-bug-248486708911105e7067cb1061607b712c39a60e.tar.gz
Merge pull request #998 from MichaelMure/fix/996/create-env-once
fix(commands): create env.Env once for all Cobra commands
Diffstat (limited to 'commands/user')
-rw-r--r--commands/user/user.go9
-rw-r--r--commands/user/user_adopt.go4
-rw-r--r--commands/user/user_new.go4
-rw-r--r--commands/user/user_show.go3
4 files changed, 7 insertions, 13 deletions
diff --git a/commands/user/user.go b/commands/user/user.go
index a9a45726..de5c1ccd 100644
--- a/commands/user/user.go
+++ b/commands/user/user.go
@@ -16,8 +16,7 @@ type userOptions struct {
format string
}
-func NewUserCommand() *cobra.Command {
- env := execenv.NewEnv()
+func NewUserCommand(env *execenv.Env) *cobra.Command {
options := userOptions{}
cmd := &cobra.Command{
@@ -29,9 +28,9 @@ func NewUserCommand() *cobra.Command {
}),
}
- cmd.AddCommand(newUserNewCommand())
- cmd.AddCommand(newUserShowCommand())
- cmd.AddCommand(newUserAdoptCommand())
+ cmd.AddCommand(newUserNewCommand(env))
+ cmd.AddCommand(newUserShowCommand(env))
+ cmd.AddCommand(newUserAdoptCommand(env))
flags := cmd.Flags()
flags.SortFlags = false
diff --git a/commands/user/user_adopt.go b/commands/user/user_adopt.go
index 30fdb442..47f0f04e 100644
--- a/commands/user/user_adopt.go
+++ b/commands/user/user_adopt.go
@@ -7,9 +7,7 @@ import (
"github.com/MichaelMure/git-bug/commands/execenv"
)
-func newUserAdoptCommand() *cobra.Command {
- env := execenv.NewEnv()
-
+func newUserAdoptCommand(env *execenv.Env) *cobra.Command {
cmd := &cobra.Command{
Use: "adopt USER_ID",
Short: "Adopt an existing identity as your own",
diff --git a/commands/user/user_new.go b/commands/user/user_new.go
index 7b287492..ba4198f8 100644
--- a/commands/user/user_new.go
+++ b/commands/user/user_new.go
@@ -14,9 +14,7 @@ type userNewOptions struct {
nonInteractive bool
}
-func newUserNewCommand() *cobra.Command {
- env := execenv.NewEnv()
-
+func newUserNewCommand(env *execenv.Env) *cobra.Command {
options := userNewOptions{}
cmd := &cobra.Command{
Use: "new",
diff --git a/commands/user/user_show.go b/commands/user/user_show.go
index 225d0ef4..049eee93 100644
--- a/commands/user/user_show.go
+++ b/commands/user/user_show.go
@@ -16,8 +16,7 @@ type userShowOptions struct {
fields string
}
-func newUserShowCommand() *cobra.Command {
- env := execenv.NewEnv()
+func newUserShowCommand(env *execenv.Env) *cobra.Command {
options := userShowOptions{}
cmd := &cobra.Command{