feat: harden CMPP delivery and platform workflows

This commit is contained in:
hectorzhao
2026-07-20 18:07:29 +08:00
parent 80fb5a8f53
commit f02c33cbb7
61 changed files with 1834 additions and 281 deletions
@@ -45,6 +45,11 @@ export class DictionariesController {
return this.dictionaries.createPhoneCarrierRule(body);
}
@Delete('phone-carrier-rules/:id')
deletePhoneCarrierRule(@Param('id') id: string) {
return this.dictionaries.deletePhoneCarrierRule(id);
}
@Get('sensitive-words')
listSensitiveWords(@Query('keyword') keyword?: string, @Query('status') status?: string) {
return this.dictionaries.listSensitiveWords({ keyword, status });