Merge branch 'feat-hjj-filebrowser#Saas3'

This commit is contained in:
jiaji.H 2025-12-01 14:13:08 +08:00
commit 2feceb8be7

View File

@ -41,7 +41,7 @@ func List(ctx *gin.Context) {
sortBy := ctx.DefaultQuery("sortBy", "name")
sortAsc, _ := strconv.ParseBool(ctx.DefaultQuery("sortAsc", "true"))
page, _ := strconv.Atoi(ctx.DefaultQuery("page", "1"))
pageSize, _ := strconv.Atoi(ctx.DefaultQuery("pageSize", "100"))
pageSize, _ := strconv.Atoi(ctx.DefaultQuery("pageSize", "100000"))
resp, err := service.FilesProvider.List(ctx, &files.FileListReq{
Path: path,
UserSpacePath: getUserSpacePath(ctx),