We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23c6be6 commit 25f297fCopy full SHA for 25f297f
cloud-functions/src/notification-engine/NotificationService.ts
@@ -247,7 +247,8 @@ export class NotificationService {
247
message: this.markdownMessage,
248
network: String(this.sourceArgs.network),
249
title: this.subject,
250
- url: this.sourceArgs.link || ''
+ url: this.sourceArgs.link || '',
251
+ trigger: this.trigger
252
} as IPANotification;
253
break;
254
cloud-functions/src/notification-engine/polkassembly/_utils/types.ts
@@ -113,6 +113,7 @@ export interface IPANotification {
113
message: string;
114
url?: string;
115
network: string;
116
+ trigger: string;
117
}
118
119
export enum EContentType {
0 commit comments