mirror of
				https://gitea.com/gitea/tea.git
				synced 2025-10-31 01:05:26 +01:00 
			
		
		
		
	tea organizations list command (#264)
Introduce tea organizations list command (#263) Fix #263 Add missing pagination options missing as suggest by reviewers. (#263) Signed-off-by: Karl Heinz Marbaise <kama@soebes.de> Co-authored-by: Karl Heinz Marbaise <kama@soebes.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/264 Reviewed-by: Norwin <noerw@noreply.gitea.io> Reviewed-by: 6543 <6543@obermui.de> Co-Authored-By: khmarbaise <khmarbaise@noreply.gitea.io> Co-Committed-By: khmarbaise <khmarbaise@noreply.gitea.io>
This commit is contained in:
		
							
								
								
									
										45
									
								
								modules/print/organization.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										45
									
								
								modules/print/organization.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,45 @@ | ||||
| // 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" | ||||
| 	"code.gitea.io/tea/cmd/flags" | ||||
| ) | ||||
|  | ||||
| // OrganizationsList prints a listing of the organizations | ||||
| func OrganizationsList(organizations []*gitea.Organization) { | ||||
| 	if len(organizations) == 0 { | ||||
| 		fmt.Println("No organizations found") | ||||
| 		return | ||||
| 	} | ||||
|  | ||||
| 	headers := []string{ | ||||
| 		"Name", | ||||
| 		"FullName", | ||||
| 		"Website", | ||||
| 		"Location", | ||||
| 		"Description", | ||||
| 	} | ||||
|  | ||||
| 	var values [][]string | ||||
|  | ||||
| 	for _, org := range organizations { | ||||
| 		values = append( | ||||
| 			values, | ||||
| 			[]string{ | ||||
| 				org.UserName, | ||||
| 				org.FullName, | ||||
| 				org.Website, | ||||
| 				org.Location, | ||||
| 				org.Description, | ||||
| 			}, | ||||
| 		) | ||||
| 	} | ||||
|  | ||||
| 	OutputList(flags.GlobalOutputValue, headers, values) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 khmarbaise
					khmarbaise