mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-26 12:27:06 +00:00 
			
		
		
		
	Fix sorting admin user list by last login (#22081)
Admin User Account list sort `updated_unix` is not the same as "Last Sign-In"
This commit is contained in:
		| @@ -68,6 +68,10 @@ func RenderUserSearch(ctx *context.Context, opts *user_model.SearchUserOptions, | |||||||
| 		orderBy = "`user`.updated_unix ASC" | 		orderBy = "`user`.updated_unix ASC" | ||||||
| 	case "reversealphabetically": | 	case "reversealphabetically": | ||||||
| 		orderBy = "`user`.name DESC" | 		orderBy = "`user`.name DESC" | ||||||
|  | 	case "lastlogin": | ||||||
|  | 		orderBy = "`user`.last_login_unix ASC" | ||||||
|  | 	case "reverselastlogin": | ||||||
|  | 		orderBy = "`user`.last_login_unix DESC" | ||||||
| 	case UserSearchDefaultSortType: // "alphabetically" | 	case UserSearchDefaultSortType: // "alphabetically" | ||||||
| 	default: | 	default: | ||||||
| 		orderBy = "`user`.name ASC" | 		orderBy = "`user`.name ASC" | ||||||
|   | |||||||
| @@ -76,9 +76,9 @@ | |||||||
| 						<th>{{.locale.Tr "admin.users.2fa"}}</th> | 						<th>{{.locale.Tr "admin.users.2fa"}}</th> | ||||||
| 						<th>{{.locale.Tr "admin.users.repos"}}</th> | 						<th>{{.locale.Tr "admin.users.repos"}}</th> | ||||||
| 						<th>{{.locale.Tr "admin.users.created"}}</th> | 						<th>{{.locale.Tr "admin.users.created"}}</th> | ||||||
| 						<th data-sortt-asc="leastupdate" data-sortt-desc="recentupdate"> | 						<th data-sortt-asc="lastlogin" data-sortt-desc="reverselastlogin"> | ||||||
| 							{{.locale.Tr "admin.users.last_login"}} | 							{{.locale.Tr "admin.users.last_login"}} | ||||||
| 							{{SortArrow "leastupdate" "recentupdate" $.SortType false}} | 							{{SortArrow "lastlogin" "reverselastlogin" $.SortType false}} | ||||||
| 						</th> | 						</th> | ||||||
| 						<th>{{.locale.Tr "admin.users.edit"}}</th> | 						<th>{{.locale.Tr "admin.users.edit"}}</th> | ||||||
| 					</tr> | 					</tr> | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 aceArt-GmbH
					aceArt-GmbH