Fix wrong filter for get requests (#11512)

- remove wrong exception filter for GET api requests
- remove messageThreadId requirements on messages for requests done with
API key (no user, only workspace)
- doing the same for calendarEvents
This commit is contained in:
martmull
2025-04-10 17:29:53 +02:00
committed by GitHub
parent 3e1b5d23f5
commit b8406820ee

View File

@ -37,7 +37,6 @@ export class RestApiCoreController {
}
@Get()
@UseFilters(RestApiExceptionFilter)
async handleApiGet(@Req() request: Request, @Res() res: Response) {
const result = await this.restApiCoreService.get(request);