From f1dc3eda3af1adc2be3aaca17ca59ee29c6ccd95 Mon Sep 17 00:00:00 2001 From: Hasideluxe <47461884+Hasideluxe@users.noreply.github.com> Date: Wed, 18 Dec 2019 22:29:22 +0100 Subject: [PATCH] Add comment --- authentication/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/authentication/urls.py b/authentication/urls.py index f5873d8..bea33ce 100644 --- a/authentication/urls.py +++ b/authentication/urls.py @@ -1,6 +1,7 @@ from django.urls import path from . import views +# Test comment urlpatterns = [ path('', views.home, name="home"), path('login/', views.login_user, name="login"), @@ -8,4 +9,4 @@ path('register/', views.register_user, name="register"), path('edit_profile/', views.edit_profile, name="edit_profile"), path('change_password/', views.change_password, name="change_password"), -] \ No newline at end of file +]