10 lines
198 B
Python
10 lines
198 B
Python
from django.urls import path
|
|
|
|
from .views import *
|
|
|
|
app_name = 'codes'
|
|
|
|
urlpatterns = [
|
|
path('certificate/', CertificationAPIView.as_view()),
|
|
path('invite/', InviteByLinkAPIView.as_view())
|
|
] |