Fix !update and auto-updated mute cases
This commit is contained in:
parent
1aaa4205e9
commit
e787312a1a
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@ export class CasesPlugin extends ZeppelinPlugin {
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.actions.register("createCaseNote", args => {
|
this.actions.register("createCaseNote", (caseOrCaseId, args) => {
|
||||||
return this.createCaseNote(args.case || args.caseId, args.modId, args.note, args.automatic, args.postInCaseLog);
|
return this.createCaseNote(caseOrCaseId, args.modId, args.note, args.automatic, args.postInCaseLog);
|
||||||
});
|
});
|
||||||
|
|
||||||
this.actions.register("postCase", async args => {
|
this.actions.register("postCase", async args => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue