Skip to content

Commit

Permalink
refactor(apply/urls): remove unused names on URL paths
Browse files Browse the repository at this point in the history
  • Loading branch information
calummackervoy committed Jul 11, 2024
1 parent 13e5fa9 commit 58b34e8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 20 deletions.
19 changes: 0 additions & 19 deletions itou/www/apply/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,52 +310,42 @@
path(
"<int:company_pk>/create/<int:job_seeker_pk>/check_job_seeker_info",
submit_views.CheckJobSeekerInformations.as_view(),
name="step_check_job_seeker_info_pk_redirect",
),
path(
"<int:company_pk>/create/<int:job_seeker_pk>/check_prev_applications",
submit_views.CheckPreviousApplications.as_view(),
name="step_check_prev_applications_pk_redirect",
),
path(
"<int:company_pk>/create/<int:job_seeker_pk>/select_jobs",
submit_views.ApplicationJobsView.as_view(),
name="application_jobs_pk_redirect",
),
path(
"<int:company_pk>/create/<int:job_seeker_pk>/eligibility",
submit_views.ApplicationEligibilityView.as_view(),
name="application_eligibility_pk_redirect",
),
path(
"<int:company_pk>/create/<int:job_seeker_pk>/geiq_eligibility",
submit_views.ApplicationGEIQEligibilityView.as_view(),
name="application_geiq_eligibility_pk_redirect",
),
path(
"<int:company_pk>/create/<int:job_seeker_pk>/resume",
submit_views.ApplicationResumeView.as_view(),
name="application_resume_pk_redirect",
),
path(
"<int:company_pk>/update_job_seeker/<int:job_seeker_pk>/1",
submit_views.UpdateJobSeekerStep1View.as_view(),
name="update_job_seeker_step_1_pk_redirect",
),
path(
"<int:company_pk>/update_job_seeker/<int:job_seeker_pk>/2",
submit_views.UpdateJobSeekerStep2View.as_view(),
name="update_job_seeker_step_2_pk_redirect",
),
path(
"<int:company_pk>/update_job_seeker/<int:job_seeker_pk>/3",
submit_views.UpdateJobSeekerStep3View.as_view(),
name="update_job_seeker_step_3_pk_redirect",
),
path(
"<int:company_pk>/update_job_seeker/<int:job_seeker_pk>/end",
submit_views.UpdateJobSeekerStepEndView.as_view(),
name="update_job_seeker_step_end_pk_redirect",
),
path(
"<int:company_pk>/hire/update-job-seeker/<int:job_seeker_pk>/1",
Expand All @@ -366,51 +356,42 @@
path(
"<int:company_pk>/hire/update-job-seeker/<int:job_seeker_pk>/2",
submit_views.UpdateJobSeekerStep2View.as_view(),
name="update_job_seeker_step_2_for_hire_pk_redirect",
kwargs={"hire_process": True},
),
path(
"<int:company_pk>/hire/update-job-seeker/<int:job_seeker_pk>/3",
submit_views.UpdateJobSeekerStep3View.as_view(),
name="update_job_seeker_step_3_for_hire_pk_redirect",
kwargs={"hire_process": True},
),
path(
"<int:company_pk>/hire/update-job-seeker/<int:job_seeker_pk>/end",
submit_views.UpdateJobSeekerStepEndView.as_view(),
name="update_job_seeker_step_end_for_hire_pk_redirect",
kwargs={"hire_process": True},
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/check-infos",
submit_views.CheckJobSeekerInformationsForHire.as_view(),
name="check_job_seeker_info_for_hire_pk_redirect",
kwargs={"hire_process": True},
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/check-previous-applications",
submit_views.CheckPreviousApplications.as_view(),
name="check_prev_applications_for_hire_pk_redirect",
kwargs={"hire_process": True},
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/eligibility",
submit_views.eligibility_for_hire,
name="eligibility_for_hire_pk_redirect",
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/geiq-eligibility",
submit_views.geiq_eligibility_for_hire,
name="geiq_eligibility_for_hire_pk_redirect",
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/geiq-eligibility-criteria",
submit_views.geiq_eligibility_criteria_for_hire,
name="geiq_eligibility_criteria_for_hire_pk_redirect",
),
path(
"<int:company_pk>/hire/<int:job_seeker_pk>/confirm",
submit_views.hire_confirmation,
name="hire_confirmation_pk_redirect",
),
]
1 change: 0 additions & 1 deletion itou/www/dashboard/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,5 @@
path(
"edit_job_seeker_info/<int:job_seeker_public_id>",
views.edit_job_seeker_info,
name="edit_job_seeker_info_redirect_pk",
)
]

0 comments on commit 58b34e8

Please sign in to comment.