# What this PR does Follow up to #2888, rename `notify_user_async` celery task to `notify_user_about_new_alert_group`. ## Checklist - [x] Unit, integration, and e2e (if applicable) tests updated - [x] Documentation added (or `pr:no public docs` PR label added if not required) - [x] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required)
10 lines
452 B
Python
10 lines
452 B
Python
from .going_oncall_notification import ( # noqa:F401
|
|
conditionally_send_going_oncall_push_notifications_for_all_schedules,
|
|
conditionally_send_going_oncall_push_notifications_for_schedule,
|
|
)
|
|
from .new_alert_group import notify_user_about_new_alert_group, notify_user_async # noqa:F401
|
|
from .new_shift_swap_request import ( # noqa:F401
|
|
notify_shift_swap_request,
|
|
notify_shift_swap_requests,
|
|
notify_user_about_shift_swap_request,
|
|
)
|