2024-07-08 11:44:39 -04:00
|
|
|
from django.urls import include, re_path, path
|
|
|
|
from django.contrib import admin
|
|
|
|
from django.views.generic import RedirectView, TemplateView
|
|
|
|
from django.conf import settings
|
|
|
|
from django.conf.urls.static import static
|
|
|
|
from adventures import urls as adventures
|
2024-09-06 23:19:44 -04:00
|
|
|
from users.views import ChangeEmailView, IsRegistrationDisabled, PublicUserListView, PublicUserDetailView
|
2024-07-08 11:44:39 -04:00
|
|
|
from .views import get_csrf_token
|
|
|
|
from drf_yasg.views import get_schema_view
|
|
|
|
|
|
|
|
from drf_yasg import openapi
|
|
|
|
|
|
|
|
schema_view = get_schema_view(
|
|
|
|
openapi.Info(
|
|
|
|
title='API Docs',
|
|
|
|
default_version='v1',
|
|
|
|
)
|
|
|
|
)
|
|
|
|
urlpatterns = [
|
|
|
|
path('api/', include('adventures.urls')),
|
|
|
|
path('api/', include('worldtravel.urls')),
|
|
|
|
|
|
|
|
path('auth/change-email/', ChangeEmailView.as_view(), name='change_email'),
|
2024-08-16 12:21:43 -04:00
|
|
|
path('auth/is-registration-disabled/', IsRegistrationDisabled.as_view(), name='is_registration_disabled'),
|
2024-09-06 23:19:44 -04:00
|
|
|
path('auth/users', PublicUserListView.as_view(), name='public-user-list'),
|
|
|
|
path('auth/user/<uuid:user_id>', PublicUserDetailView.as_view(), name='public-user-detail'),
|
2024-07-08 11:44:39 -04:00
|
|
|
|
|
|
|
path('csrf/', get_csrf_token, name='get_csrf_token'),
|
|
|
|
re_path(r'^$', TemplateView.as_view(
|
|
|
|
template_name="home.html"), name='home'),
|
|
|
|
re_path(r'^signup/$', TemplateView.as_view(template_name="signup.html"),
|
|
|
|
name='signup'),
|
|
|
|
re_path(r'^email-verification/$',
|
|
|
|
TemplateView.as_view(template_name="email_verification.html"),
|
|
|
|
name='email-verification'),
|
|
|
|
re_path(r'^login/$', TemplateView.as_view(template_name="login.html"),
|
|
|
|
name='login'),
|
|
|
|
re_path(r'^logout/$', TemplateView.as_view(template_name="logout.html"),
|
|
|
|
name='logout'),
|
|
|
|
re_path(r'^password-reset/$',
|
|
|
|
TemplateView.as_view(template_name="password_reset.html"),
|
|
|
|
name='password-reset'),
|
|
|
|
re_path(r'^password-reset/confirm/$',
|
|
|
|
TemplateView.as_view(template_name="password_reset_confirm.html"),
|
|
|
|
name='password-reset-confirm'),
|
|
|
|
|
|
|
|
re_path(r'^user-details/$',
|
|
|
|
TemplateView.as_view(template_name="user_details.html"),
|
|
|
|
name='user-details'),
|
|
|
|
re_path(r'^password-change/$',
|
|
|
|
TemplateView.as_view(template_name="password_change.html"),
|
|
|
|
name='password-change'),
|
|
|
|
re_path(r'^resend-email-verification/$',
|
|
|
|
TemplateView.as_view(
|
|
|
|
template_name="resend_email_verification.html"),
|
|
|
|
name='resend-email-verification'),
|
|
|
|
|
|
|
|
|
|
|
|
# this url is used to generate email content
|
|
|
|
re_path(r'^password-reset/confirm/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,32})/$',
|
|
|
|
TemplateView.as_view(template_name="password_reset_confirm.html"),
|
|
|
|
name='password_reset_confirm'),
|
|
|
|
|
|
|
|
re_path(r'^auth/', include('dj_rest_auth.urls')),
|
|
|
|
re_path(r'^auth/registration/',
|
|
|
|
include('dj_rest_auth.registration.urls')),
|
|
|
|
re_path(r'^account/', include('allauth.urls')),
|
|
|
|
re_path(r'^admin/', admin.site.urls),
|
|
|
|
re_path(r'^accounts/profile/$', RedirectView.as_view(url='/',
|
|
|
|
permanent=True), name='profile-redirect'),
|
|
|
|
re_path(r'^docs/$', schema_view.with_ui('swagger',
|
|
|
|
cache_timeout=0), name='api_docs'),
|
|
|
|
# path('auth/account-confirm-email/', VerifyEmailView.as_view(), name='account_email_verification_sent'),
|
|
|
|
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)
|