forked from openedx/edx-platform
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: [AXM-271] Add push notification event to discussions
- Loading branch information
1 parent
dd1844b
commit 3d2f05d
Showing
3 changed files
with
13 additions
and
0 deletions.
There are no files selected for viewing
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
8 changes: 8 additions & 0 deletions
8
lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/push/body.txt
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,8 @@ | ||
{% load i18n %} | ||
|
||
{% block content %} | ||
{% blocktrans trimmed %} | ||
{{ comment_username }} replied to <b>{{ thread_title }}</b>: | ||
{% endblocktrans %} | ||
{{ comment_body }} | ||
{% endblock %} |
3 changes: 3 additions & 0 deletions
3
lms/djangoapps/discussion/templates/discussion/edx_ace/responsenotification/push/subject.txt
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,3 @@ | ||
{% load i18n %} | ||
|
||
{% blocktrans %}Response to {{ thread_title }}{% endblocktrans %} |