fix: complete first version issue remediation
This commit is contained in:
@@ -34,9 +34,25 @@ export class AdminOperationsController {
|
||||
@Query('taskId') taskId?: string,
|
||||
@Query('messageId') messageId?: string,
|
||||
@Query('phoneNumber') phoneNumber?: string,
|
||||
@Query('contentKeyword') contentKeyword?: string,
|
||||
@Query('channelKeyword') channelKeyword?: string,
|
||||
@Query('queuedAtFrom') queuedAtFrom?: string,
|
||||
@Query('queuedAtTo') queuedAtTo?: string,
|
||||
@Query('status') status?: string,
|
||||
) {
|
||||
return this.operations.listMessages({ tenantId, applicationId, channelId, taskId, messageId, phoneNumber, status });
|
||||
return this.operations.listMessages({
|
||||
tenantId,
|
||||
applicationId,
|
||||
channelId,
|
||||
taskId,
|
||||
messageId,
|
||||
phoneNumber,
|
||||
contentKeyword,
|
||||
channelKeyword,
|
||||
queuedAtFrom,
|
||||
queuedAtTo,
|
||||
status,
|
||||
});
|
||||
}
|
||||
|
||||
@Get('message-segment-audits')
|
||||
|
||||
Reference in New Issue
Block a user