mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
7 lines
241 B
Python
7 lines
241 B
Python
from django.urls import path
|
|
from .views import MailSettingsView, SyncImapView
|
|
|
|
urlpatterns = [
|
|
path('mail-settings/', MailSettingsView.as_view(), name='smtp_settings'),
|
|
path('sync-imap/', SyncImapView.as_view(), name='sync-imap'),
|
|
] |