mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	The web context (modules/context.Context) is quite complex, it's difficult for the callers to initialize correctly. This PR introduces a `NewWebContext` function, to make sure the web context have the same behavior for different cases.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			465 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package repo
 | 
						|
 | 
						|
import (
 | 
						|
	"sort"
 | 
						|
 | 
						|
	"code.gitea.io/gitea/models/user"
 | 
						|
)
 | 
						|
 | 
						|
func MakeSelfOnTop(doer *user.User, users []*user.User) []*user.User {
 | 
						|
	if doer != nil {
 | 
						|
		sort.Slice(users, func(i, j int) bool {
 | 
						|
			if users[i].ID == users[j].ID {
 | 
						|
				return false
 | 
						|
			}
 | 
						|
			return users[i].ID == doer.ID // if users[i] is self, put it before others, so less=true
 | 
						|
		})
 | 
						|
	}
 | 
						|
	return users
 | 
						|
}
 |