surface-security / django-notification-sender

Django App to let users configure a notification system in Surface. Supports Email and Slack
MIT License
1 stars 1 forks source link

Notifications

Pluggable app to centralize notification configuration.

Available settings:

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/