Skip to content

Commit

Permalink
Fix: variable to long
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawardshin committed Nov 19, 2024
1 parent 1108415 commit 8578450
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public FileContentDto updateFile(@PathVariable Long id, @RequestBody CreateFileR
}

@GetMapping("/file/{id}")
public FileContentDto getFile(@PathVariable String id) {
public FileContentDto getFile(@PathVariable Long id) {
return docsService.getFile(id);
}

Expand Down

0 comments on commit 8578450

Please sign in to comment.