surface-security / django-notification-sender

Django App to let users configure a notification system in Surface. Supports Email and Slack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Notifications

Pluggable app to centralize notification configuration.

Available settings:

  • NOTIFICATIONS_MAIL_FROM - sender for mail notifications (falls back to settings.DEFAULT_FROM_EMAIL)
  • NOTIFICATIONS_SLACK_APP_TOKEN - Slack app token to be used to post the notifications using API, not incoming webhook (no default, set it or slack won't work!)

To use external notifications make sure to update your project urls.py to add a valid path for notifications

urlpatterns = [
    ...
    path(
        'api/notifications/', include(('notifications.urls', 'notifications'), namespace='notifications')
    ),
    ...
]

This would allow external notifications to be POSTed to api/notifications/notify/

About

Django App to let users configure a notification system in Surface. Supports Email and Slack

License:MIT License


Languages

Language:Python 93.7%Language:HTML 5.0%Language:Makefile 0.7%Language:JavaScript 0.6%