fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit a8099c5f97 - Show all commits

View file

@ -1024,6 +1024,14 @@ export class KeywordsExpressions {
}
];
keywords[i++] = [
/^\s*(send template to)(\s*)(.*)/gim,
($0, $1, $2, $3) => {
const params = this.getParams($3, ['mobile', 'text']);
return `await dk.fillAndBroadcastTemplate({pid: pid, ${params}})`;
}
];
keywords[i++] = [
/^\s*(hover)(\s*)(.*)/gim,
($0, $1, $2, $3) => {