-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #209 from alkem-io/develop
Release: Notifications for forum discussions
- Loading branch information
Showing
25 changed files
with
253 additions
and
131 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
lib/src/dto/communication.discussion.created.event.payload.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
lib/src/dto/platform.forum.discussion.comment.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { BaseEventPayload } from './base.event.payload'; | ||
|
||
export interface PlatformForumDiscussionCommentEventPayload | ||
extends BaseEventPayload { | ||
discussion: { | ||
displayName: string; | ||
createdBy: string; | ||
url: string; | ||
}; | ||
comment: { | ||
message: string; | ||
createdBy: string; | ||
}; | ||
} |
11 changes: 11 additions & 0 deletions
11
lib/src/dto/platform.forum.discussion.created.event.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { BaseEventPayload } from './base.event.payload'; | ||
|
||
export interface PlatformForumDiscussionCreatedEventPayload | ||
extends BaseEventPayload { | ||
discussion: { | ||
id: string; | ||
createdBy: string; | ||
displayName: string; | ||
url: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 0 additions & 11 deletions
11
service/src/common/email-template-payload/communication.discussion.created.email.payload.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
service/src/common/email-template-payload/platform.forum.discussion.comment.email.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import { BaseEmailPayload } from './base.email.payload'; | ||
|
||
export interface PlatformForumDiscussionCommentEmailPayload | ||
extends BaseEmailPayload { | ||
comment: { | ||
message: string; | ||
createdBy: string; | ||
}; | ||
discussion: { | ||
displayName: string; | ||
createdBy: string; | ||
url: string; | ||
}; | ||
} |
12 changes: 12 additions & 0 deletions
12
service/src/common/email-template-payload/platform.forum.discussion.created.email.payload.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import { BaseEmailPayload } from './base.email.payload'; | ||
|
||
export interface PlatformForumDiscussionCreatedEmailPayload | ||
extends BaseEmailPayload { | ||
createdBy: { | ||
firstName: string; | ||
}; | ||
discussion: { | ||
displayName: string; | ||
url: string; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.