refactor: rename searchMetadata to searchAssets (#14151)

This commit is contained in:
Jason Rasmussen 2024-11-20 14:47:25 -05:00 committed by GitHub
parent ed8a3101a8
commit 9e1e9b1fbf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 32 additions and 32 deletions

View file

@ -25,7 +25,7 @@ export class SearchController {
@Post('metadata')
@HttpCode(HttpStatus.OK)
@Authenticated()
searchMetadata(@Auth() auth: AuthDto, @Body() dto: MetadataSearchDto): Promise<SearchResponseDto> {
searchAssets(@Auth() auth: AuthDto, @Body() dto: MetadataSearchDto): Promise<SearchResponseDto> {
return this.service.searchMetadata(auth, dto);
}