summaryrefslogtreecommitdiffstats
path: root/tools/pharos-dashboard/account/urls.py
diff options
context:
space:
mode:
authormaxbr <maxbr@mi.fu-berlin.de>2016-09-12 11:19:18 +0200
committermaxbr <maxbr@mi.fu-berlin.de>2016-09-12 11:19:18 +0200
commit79adac907cfef1222e9b29b4feb3b2f71b660e30 (patch)
tree47e59bbdef290e05e089147b40909d1086a504c7 /tools/pharos-dashboard/account/urls.py
parent167ed9ae59ded96d526b421c932b41554465f9eb (diff)
Add user info panel
JIRA: PHAROS-264 Change-Id: I5404812a78755ce1026401b8dda1f0d167dc6fda Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/account/urls.py')
-rw-r--r--tools/pharos-dashboard/account/urls.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/pharos-dashboard/account/urls.py b/tools/pharos-dashboard/account/urls.py
index b837814a..7289da69 100644
--- a/tools/pharos-dashboard/account/urls.py
+++ b/tools/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'),
]