mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 00:20:25 +08:00 
			
		
		
		
	Remove deprecated query condition in ListReleases (#28339)
close #24057 call stack:25faee3c5f/routers/api/v1/repo/release.go (L154)ec1feedbf5/routers/api/v1/utils/page.go (L13-L18)ec1feedbf5/services/convert/utils.go (L15-L22)## ⚠️ Breaking ⚠️ (though it's not caused by this PR) Do not use `per_page` to specify pagination; use `limit` instead
This commit is contained in:
		@@ -133,11 +133,6 @@ func ListReleases(ctx *context.APIContext) {
 | 
			
		||||
	//   in: query
 | 
			
		||||
	//   description: filter (exclude / include) pre-releases
 | 
			
		||||
	//   type: boolean
 | 
			
		||||
	// - name: per_page
 | 
			
		||||
	//   in: query
 | 
			
		||||
	//   description: page size of results, deprecated - use limit
 | 
			
		||||
	//   type: integer
 | 
			
		||||
	//   deprecated: true
 | 
			
		||||
	// - name: page
 | 
			
		||||
	//   in: query
 | 
			
		||||
	//   description: page number of results to return (1-based)
 | 
			
		||||
@@ -152,9 +147,6 @@ func ListReleases(ctx *context.APIContext) {
 | 
			
		||||
	//   "404":
 | 
			
		||||
	//     "$ref": "#/responses/notFound"
 | 
			
		||||
	listOptions := utils.GetListOptions(ctx)
 | 
			
		||||
	if listOptions.PageSize == 0 && ctx.FormInt("per_page") != 0 {
 | 
			
		||||
		listOptions.PageSize = ctx.FormInt("per_page")
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	opts := repo_model.FindReleasesOptions{
 | 
			
		||||
		ListOptions:   listOptions,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user