mirror of
https://gitea.com/gitea/tea
synced 2024-11-18 09:25:36 +00:00
b02263adb0
- Replace loadConfig() with _ = loadConfig() - Update file permissions from 0660 to 0o660 - Simplify variable declarations - Replace golang.org/x/crypto/ssh/terminal with golang.org/x/term - Remove unused getCertPrincipals function - Replace time.Now().Sub() with time.Since() - Add test for ArgToIndex function Signed-off-by: appleboy <appleboy.tw@gmail.com> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/548 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-by: techknowlogick <techknowlogick@noreply.gitea.io> Co-authored-by: appleboy <appleboy.tw@gmail.com> Co-committed-by: appleboy <appleboy.tw@gmail.com>
52 lines
1013 B
Go
52 lines
1013 B
Go
// 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 print
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
)
|
|
|
|
// OrganizationDetails prints details of an org with formatting
|
|
func OrganizationDetails(org *gitea.Organization) {
|
|
_ = outputMarkdown(fmt.Sprintf(
|
|
"# %s\n%s\n\n- Visibility: %s\n- Location: %s\n- Website: %s\n",
|
|
org.UserName,
|
|
org.Description,
|
|
org.Visibility,
|
|
org.Location,
|
|
org.Website,
|
|
), "")
|
|
}
|
|
|
|
// OrganizationsList prints a listing of the organizations
|
|
func OrganizationsList(organizations []*gitea.Organization, output string) {
|
|
if len(organizations) == 0 {
|
|
fmt.Println("No organizations found")
|
|
return
|
|
}
|
|
|
|
t := tableWithHeader(
|
|
"Name",
|
|
"FullName",
|
|
"Website",
|
|
"Location",
|
|
"Description",
|
|
)
|
|
|
|
for _, org := range organizations {
|
|
t.addRow(
|
|
org.UserName,
|
|
org.FullName,
|
|
org.Website,
|
|
org.Location,
|
|
org.Description,
|
|
)
|
|
}
|
|
|
|
t.print(output)
|
|
}
|