Files
rengine/notification/urls.py
T
2020-07-19 00:25:13 +05:30

23 lines
493 B
Python

from django.contrib import admin
from django.urls import path, include
from . import views
urlpatterns = [
path(
'',
views.index,
name='notification_index'),
path(
'change/<int:id>',
views.change_notif_status,
name='change_notif_status'),
path(
'add/',
views.add_notification_hook,
name='add_notification_hook'),
path(
'delete/<int:id>',
views.delete_hook,
name='delete_hook'),
]