rename to updateUser in album service

This commit is contained in:
mgabor
2024-04-19 20:24:09 +02:00
parent 74d738a11a
commit 5f0a2b5d6a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -105,6 +105,6 @@ export class AlbumController {
@Param('userId', new ParseMeUUIDPipe({ version: '4' })) userId: string,
@Body() dto: UpdateAlbumUserDto,
): Promise<void> {
return this.service.updateAlbumUser(auth, id, userId, dto);
return this.service.updateUser(auth, id, userId, dto);
}
}