mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
9 lines
252 B
Python
9 lines
252 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_api'),
|
|
]
|