diff options
author | 2016-09-12 11:19:18 +0200 | |
---|---|---|
committer | 2016-09-12 11:19:18 +0200 | |
commit | ed84f733591f2b6cede955ce1ff91f647581f0ff (patch) | |
tree | a3bb94cc4fb07aeee01614028c85a20385977adf /pharos-dashboard/account/urls.py | |
parent | c19db1ed0fcbf232a7a9045e8d5680b93929dddd (diff) |
Add user info panel
JIRA: PHAROS-264
Change-Id: I5404812a78755ce1026401b8dda1f0d167dc6fda
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'pharos-dashboard/account/urls.py')
-rw-r--r-- | pharos-dashboard/account/urls.py | 3 |
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'), ] |