File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 1919 tutor plugins enable notifications
2020
2121
22+ The email and push notification settings under Account can be enabled/disabled using `NOTIFICATIONS_ENABLE_SHOW_EMAIL_CHANNEL `
23+ and `NOTIFICATIONS_ENABLE_SHOW_PUSH_CHANNEL `. These settings are set to True by default and can be turned off.
24+
2225License
2326*******
2427
Original file line number Diff line number Diff line change 11
2- MFE_CONFIG["SHOW_EMAIL_CHANNEL"] = True
2+ MFE_CONFIG["SHOW_EMAIL_CHANNEL"] = {{ NOTIFICATIONS_ENABLE_SHOW_EMAIL_CHANNEL }}
3+ MFE_CONFIG["SHOW_PUSH_CHANNEL"] = {{ NOTIFICATIONS_ENABLE_SHOW_PUSH_CHANNEL }}
Original file line number Diff line number Diff line change 1717 # Each new setting is a pair: (setting_name, default_value).
1818 # Prefix your setting names with 'NOTIFICATIONS_'.
1919 ("NOTIFICATIONS_VERSION" , __version__ ),
20+ ("NOTIFICATIONS_ENABLE_SHOW_EMAIL_CHANNEL" , True ),
21+ ("NOTIFICATIONS_ENABLE_SHOW_PUSH_CHANNEL" , True ),
2022 ]
2123)
2224
133135 "org.openedx.frontend.layout.studio_header_search_button_slot.v1" ,
134136 notification_drawer_config ,
135137 ),
136-
137138 ],
138139)
You can’t perform that action at this time.
0 commit comments