diff --git a/mobile/openapi/README.md b/mobile/openapi/README.md index 6a27009cf9..51626b7b65 100644 --- a/mobile/openapi/README.md +++ b/mobile/openapi/README.md @@ -476,6 +476,8 @@ Class | Method | HTTP request | Description - [SyncAlbumV1](doc//SyncAlbumV1.md) - [SyncAssetDeleteV1](doc//SyncAssetDeleteV1.md) - [SyncAssetExifV1](doc//SyncAssetExifV1.md) + - [SyncAssetFaceDeleteV1](doc//SyncAssetFaceDeleteV1.md) + - [SyncAssetFaceV1](doc//SyncAssetFaceV1.md) - [SyncAssetV1](doc//SyncAssetV1.md) - [SyncEntityType](doc//SyncEntityType.md) - [SyncMemoryAssetDeleteV1](doc//SyncMemoryAssetDeleteV1.md) diff --git a/server/src/controllers/album.controller.ts b/server/src/controllers/album.controller.ts index 865a63e408..f3ad312823 100644 --- a/server/src/controllers/album.controller.ts +++ b/server/src/controllers/album.controller.ts @@ -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 { return this.service.getAll(auth, query, true); }