This commit is contained in:
Data-Name-ID
2024-04-01 18:00:52 +03:00
parent 1b84b746d1
commit 268a541466
14 changed files with 126 additions and 32 deletions
+6 -1
View File
@@ -1,6 +1,6 @@
from django.urls import path
from .views import AddUserToTeam
from .views import AddUserToTeam, CreateVacancy
urlpatterns = [
path(
@@ -8,4 +8,9 @@ urlpatterns = [
AddUserToTeam.as_view(),
name="add_user_to_team",
),
path(
"create_vacancy/",
CreateVacancy.as_view(),
name="create_vacancy",
),
]