mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Ordering team by name ascending except for 'Owners' (#48)
This commit is contained in:
		
					parent
					
						
							
								d318f612a9
							
						
					
				
			
			
				commit
				
					
						fe8bfa54de
					
				
			
		
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -50,7 +50,7 @@ func (org *User) GetOwnerTeam() (*Team, error) { | |||
| } | ||||
| 
 | ||||
| func (org *User) getTeams(e Engine) error { | ||||
| 	return e.Where("org_id=?", org.ID).Find(&org.Teams) | ||||
| 	return e.Where("org_id=?", org.ID).OrderBy("CASE WHEN name LIKE '" + OWNER_TEAM + "' THEN '' ELSE name END").Find(&org.Teams) | ||||
| } | ||||
| 
 | ||||
| // GetTeams returns all teams that belong to organization. | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue