summaryrefslogtreecommitdiffstats
path: root/pharos-dashboard/account/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'pharos-dashboard/account/urls.py')
-rw-r--r--pharos-dashboard/account/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/pharos-dashboard/account/urls.py b/pharos-dashboard/account/urls.py
index b837814..7289da6 100644
--- a/pharos-dashboard/account/urls.py
+++ b/pharos-dashboard/account/urls.py
@@ -21,5 +21,6 @@ urlpatterns = [
url(r'^settings/', AccountSettingsView.as_view(), name='settings'),
url(r'^authenticated/$', JiraAuthenticatedView.as_view(), name='authenticated'),
url(r'^login/$', JiraLoginView.as_view(), name='login'),
- url(r'^logout/$', JiraLogoutView.as_view(), name='logout')
+ url(r'^logout/$', JiraLogoutView.as_view(), name='logout'),
+ url(r'^users/$', UserListView.as_view(), name='users'),
]