2020-09-30 01:11:33 -04:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package login
|
|
|
|
|
|
|
|
import (
|
|
|
|
"code.gitea.io/tea/cmd/flags"
|
|
|
|
"code.gitea.io/tea/modules/config"
|
|
|
|
|
|
|
|
"github.com/skratchdot/open-golang/open"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
// CmdLoginEdit represents to login a gitea server.
|
|
|
|
var CmdLoginEdit = cli.Command{
|
|
|
|
Name: "edit",
|
2020-12-16 11:47:40 -05:00
|
|
|
Aliases: []string{"e"},
|
2020-09-30 01:11:33 -04:00
|
|
|
Usage: "Edit Gitea logins",
|
|
|
|
Description: `Edit Gitea logins`,
|
|
|
|
Action: runLoginEdit,
|
|
|
|
Flags: []cli.Flag{&flags.OutputFlag},
|
|
|
|
}
|
|
|
|
|
2020-12-12 08:28:37 -05:00
|
|
|
func runLoginEdit(_ *cli.Context) error {
|
2020-09-30 01:11:33 -04:00
|
|
|
return open.Start(config.GetConfigPath())
|
|
|
|
}
|