Skip to content

Commit

Permalink
🐛 Increase episode rate limit to 100/minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xen0Xys committed May 18, 2024
1 parent 74e66d5 commit e840c94
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/webtoon/webtoon/webtoon.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export class WebtoonController{
}

@Get(":webtoonId/episodes")
@Throttle({default: {limit: 100, ttl: 60000}})
@ApiResponse({status: 200, description: "Returns a list of episodes for a webtoon", type: EpisodeChunkResponse})
@ApiResponse({status: 404, description: "Webtoon not found"})
async getWebtoonEpisodes(@Param() webtoonIdDto: WebtoonIdDto, @Query() chunkNumberDto: ChunkNumberDto): Promise<EpisodeChunkResponse>{
Expand Down

0 comments on commit e840c94

Please sign in to comment.