mirror of
https://gitea.com/gitea/tea
synced 2024-10-31 21:20:23 +00:00
1e59dee685
fixes #287, fixes #363 Co-authored-by: Norwin <git@nroo.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/420 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-authored-by: Norwin <noerw@noreply.gitea.io> Co-committed-by: Norwin <noerw@noreply.gitea.io>
49 lines
1.2 KiB
Go
49 lines
1.2 KiB
Go
// Copyright 2019 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 cmd
|
|
|
|
import (
|
|
"code.gitea.io/tea/cmd/organizations"
|
|
"code.gitea.io/tea/modules/context"
|
|
"code.gitea.io/tea/modules/print"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
)
|
|
|
|
// CmdOrgs represents handle organization
|
|
var CmdOrgs = cli.Command{
|
|
Name: "organizations",
|
|
Aliases: []string{"organization", "org"},
|
|
Category: catEntities,
|
|
Usage: "List, create, delete organizations",
|
|
Description: "Show organization details",
|
|
ArgsUsage: "[<organization>]",
|
|
Action: runOrganizations,
|
|
Subcommands: []*cli.Command{
|
|
&organizations.CmdOrganizationList,
|
|
&organizations.CmdOrganizationCreate,
|
|
&organizations.CmdOrganizationDelete,
|
|
},
|
|
Flags: organizations.CmdOrganizationList.Flags,
|
|
}
|
|
|
|
func runOrganizations(cmd *cli.Context) error {
|
|
ctx := context.InitCommand(cmd)
|
|
if ctx.Args().Len() == 1 {
|
|
return runOrganizationDetail(ctx)
|
|
}
|
|
return organizations.RunOrganizationList(cmd)
|
|
}
|
|
|
|
func runOrganizationDetail(ctx *context.TeaContext) error {
|
|
org, _, err := ctx.Login.Client().GetOrg(ctx.Args().First())
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
print.OrganizationDetails(org)
|
|
return nil
|
|
}
|