mirror of
https://github.com/halo-dev/plugin-s3.git
synced 2026-01-14 07:03:32 +08:00
fix: list s3 file error in Halo 2.11 (#103)
```release-note 修复 Halo 2.11 中 关联S3文件 功能报错的问题 ``` fixes #102
This commit is contained in:
@@ -32,7 +32,7 @@ public class S3LinkController {
|
||||
}
|
||||
|
||||
@GetMapping("/objects/{policyName}")
|
||||
public Mono<S3ListResult> listObjects(@PathVariable String policyName,
|
||||
public Mono<S3ListResult> listObjects(@PathVariable(value = "policyName") String policyName,
|
||||
@RequestParam(name = "continuationToken", required = false) String continuationToken,
|
||||
@RequestParam(name = "continuationObject", required = false) String continuationObject,
|
||||
@RequestParam(name = "pageSize") Integer pageSize,
|
||||
|
||||
Reference in New Issue
Block a user