mirror of
https://github.com/apricote/Listory.git
synced 2026-01-13 21:21:02 +00:00
chore(deps): update typescript-eslint monorepo to v5
This commit is contained in:
parent
51121c7a90
commit
84cf3391f1
3 changed files with 991 additions and 929 deletions
|
|
@ -14,10 +14,10 @@ export class ListensController {
|
|||
@Get()
|
||||
@AuthAccessToken()
|
||||
async getRecentlyPlayed(
|
||||
@Query("page") page: number = 1,
|
||||
@Query("limit") limit: number = 10,
|
||||
@Query("filter") filter: GetListensFilterDto,
|
||||
@ReqUser() user: User
|
||||
@ReqUser() user: User,
|
||||
@Query("page") page: number = 1,
|
||||
@Query("limit") limit: number = 10
|
||||
): Promise<Pagination<Listen>> {
|
||||
const clampedLimit = limit > 100 ? 100 : limit;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue