mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 16:01:32 +01:00 
			
		
		
		
	FIX Pagination of ListAccessTokens and GetIssueWatchers (#10449)
* fix a pagination bug * fix pagination of ListAccessTokens
This commit is contained in:
		
							parent
							
								
									0eeee9c721
								
							
						
					
					
						commit
						b65e954f73
					
				| @ -81,7 +81,7 @@ func GetIssueWatchers(issueID int64, listOptions ListOptions) (IssueWatchList, e | ||||
| 	return getIssueWatchers(x, issueID, listOptions) | ||||
| } | ||||
| 
 | ||||
| func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (watches IssueWatchList, err error) { | ||||
| func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (IssueWatchList, error) { | ||||
| 	sess := e. | ||||
| 		Where("`issue_watch`.issue_id = ?", issueID). | ||||
| 		And("`issue_watch`.is_watching = ?", true). | ||||
| @ -89,11 +89,13 @@ func getIssueWatchers(e Engine, issueID int64, listOptions ListOptions) (watches | ||||
| 		And("`user`.prohibit_login = ?", false). | ||||
| 		Join("INNER", "`user`", "`user`.id = `issue_watch`.user_id") | ||||
| 
 | ||||
| 	if listOptions.Page == 0 { | ||||
| 	if listOptions.Page != 0 { | ||||
| 		sess = listOptions.setSessionPagination(sess) | ||||
| 		watches := make([]*IssueWatch, 0, listOptions.PageSize) | ||||
| 		return watches, sess.Find(&watches) | ||||
| 	} | ||||
| 	err = sess.Find(&watches) | ||||
| 	return | ||||
| 	watches := make([]*IssueWatch, 0, 8) | ||||
| 	return watches, sess.Find(&watches) | ||||
| } | ||||
| 
 | ||||
| func removeIssueWatchersByRepoID(e Engine, userID int64, repoID int64) error { | ||||
|  | ||||
| @ -83,7 +83,7 @@ func ListAccessTokens(uid int64, listOptions ListOptions) ([]*AccessToken, error | ||||
| 		Where("uid=?", uid). | ||||
| 		Desc("id") | ||||
| 
 | ||||
| 	if listOptions.Page == 0 { | ||||
| 	if listOptions.Page != 0 { | ||||
| 		sess = listOptions.setSessionPagination(sess) | ||||
| 
 | ||||
| 		tokens := make([]*AccessToken, 0, listOptions.PageSize) | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user