* move mobile notifications to a separate backend, remove critical notification * remove outdated mobile app code * MOBILE_APP_PUSH_NOTIFICATIONS_ENABLED -> FEATURE_MOBILE_APP_INTEGRATION_ENABLED * create error log if no devices are set up * move mobile auth related code to the mobile_app Django app * move mobile auth related code to the mobile_app Django app * move mobile auth related code to the mobile_app Django app * fix typing * add GCMDevice todos * add user connection capabilities * add user connect/disconnect to the messaging backend * move APNS endpoint to mobile_app Django app * restore critical notifications * support hackathon app * tweak migrations so mobile app auth tokens are preserved * reuse notify_by IDs * use mobile app template to render push notification * add GCM/FCM (Android) support * fix unlink user * logger.error -> logger.info
13 lines
443 B
Python
13 lines
443 B
Python
from apps.alerts.incident_appearance.templaters.alert_templater import AlertTemplater
|
|
from common.utils import str_or_backup
|
|
|
|
|
|
class AlertMobileAppTemplater(AlertTemplater):
|
|
def _render_for(self):
|
|
return "MOBILE_APP"
|
|
|
|
|
|
def get_push_notification_message(alert_group):
|
|
alert = alert_group.alerts.first()
|
|
templated_alert = AlertMobileAppTemplater(alert).render()
|
|
return str_or_backup(templated_alert.title, "Alert Group")
|