- correct permission types

- merge
This commit is contained in:
CJPeckover
2025-07-22 02:00:09 -04:00
parent 6fc02898ad
commit 42373259c2
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export class AlbumController {
}
@Get('slim')
@Authenticated({ permission: Permission.ALBUM_READ })
@Authenticated({ permission: Permission.AlbumRead })
getAllAlbumsSlim(@Auth() auth: AuthDto, @Query() query: GetAlbumsDto): Promise<AlbumResponseDto[]> {
return this.service.getAll(auth, query, true);
}