cdc-placement-website-backend/CDC_Backend/APIs/companyUrls.py

12 lines
456 B
Python
Raw Normal View History

2021-10-15 20:47:23 +05:30
from django.urls import path
2022-05-02 17:16:56 +05:30
from . import companyViews
2021-10-15 20:47:23 +05:30
urlpatterns = [
path('addPlacement/', companyViews.addPlacement, name="Add Placement"),
2021-12-17 17:15:56 +05:30
path('verifyEmail/', companyViews.verifyEmail, name="Verify Email"),
2023-06-02 22:44:07 +05:30
path('getAutoFillJnf/', companyViews.autoFillJnf, name="Auto FIll JNF"),
2023-07-25 00:34:39 +05:30
path('addInternship/',companyViews.addInternship,name="Add Internship"),
path('getAutoFillInf/', companyViews.autoFillInf, name="Auto FIll INF"),
2021-10-15 20:47:23 +05:30
]