Skip to content

Commit

Permalink
chore: update default notification preference for ora_grade_assigned (#…
Browse files Browse the repository at this point in the history
…35522)

* chore: update default notification preference for ora_grade_assigned

* test: updated tests
  • Loading branch information
eemaanamir authored Sep 23, 2024
1 parent 1a92009 commit a2e2959
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/notifications/base_notification.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@
'name': 'ora_grade_assigned',
'is_core': False,
'info': '',
'web': False,
'email': False,
'web': True,
'email': True,
'push': False,
'email_cadence': EmailCadence.DAILY,
'non_editable': [],
Expand Down
4 changes: 2 additions & 2 deletions openedx/core/djangoapps/notifications/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -315,8 +315,8 @@ def _expected_api_response(self, course=None):
'info': 'Notifications for submission grading.'
},
'ora_grade_assigned': {
'web': False,
'email': False,
'web': True,
'email': True,
'push': False,
'email_cadence': 'Daily',
'info': ''
Expand Down

0 comments on commit a2e2959

Please sign in to comment.