Skip to content

Commit

Permalink
Add isGhost support for triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewtelnov committed Jan 18, 2024
1 parent ac5dfd1 commit d40b221
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/trigger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ export class Trigger extends Base {
}
return res;
}
public isGhost: boolean;
protected get isInternal(): boolean {
return this.isGhost === true;
}
public get operator(): string {
return this.getPropertyValue("operator", "equal");
}
Expand Down

0 comments on commit d40b221

Please sign in to comment.