mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-04-05 12:41:27 +00:00
10 lines
349 B
Python
10 lines
349 B
Python
from django.urls import path
|
|
from .views import (
|
|
SendEmailView, search_recipients, SendFeedbackView
|
|
)
|
|
|
|
urlpatterns = [
|
|
path('send-email/', SendEmailView.as_view(), name='send_email'),
|
|
path('search-recipients/', search_recipients, name='search_recipients'),
|
|
path('send-feedback/', SendFeedbackView.as_view(), name='send_feedback'),
|
|
] |