2021-10-15 20:47:23 +05:30
|
|
|
from django.urls import path
|
|
|
|
from . import companyViews
|
|
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
2021-12-03 01:04:49 +05:30
|
|
|
path('addPlacement/', companyViews.addPlacement, name="Add Placement"),
|
2021-12-17 17:15:56 +05:30
|
|
|
path('verifyEmail/', companyViews.verifyEmail, name="Verify Email"),
|
2021-10-15 20:47:23 +05:30
|
|
|
]
|