refactor: remove UpdateAgreementView and its URL path from user management 🔨

This commit is contained in:
2025-07-25 00:05:35 +05:00
parent 9e4449d0d6
commit fd603daaaf
2 changed files with 2 additions and 33 deletions
-6
View File
@@ -23,7 +23,6 @@ from .views import (
UserVerifyAPIView,
UserUpdateAPIView,
UserRejectAPIView,
UpdateAgreementView,
)
@@ -46,11 +45,6 @@ urlpatterns = [
path("users/temp/filter/", filter_temporary_user, name="filter-temporary-users"),
# User verification flow
path("users/<int:pk>/verify/", UserVerifyAPIView.as_view(), name="user-verify"),
path(
"users/<int:pk>/agreement/",
UpdateAgreementView.as_view(),
name="user-agreement",
),
path("users/<int:pk>/reject/", UserRejectAPIView.as_view(), name="user-reject"),
path("healthcheck/", healthcheck, name="healthcheck"),
path("test/", test_email, name="testemail"),