diff options
author | 2016-08-19 17:15:28 +0200 | |
---|---|---|
committer | 2016-08-19 17:15:28 +0200 | |
commit | ebaa05ab2b53634a7a3e738618a031fd1518d796 (patch) | |
tree | 2df4bf769f6ed52f4b9109a96d3194aa5a95e453 /tools/pharos-dashboard/dashboard/urls.py | |
parent | 54322038f766be460b676d60974886be5f04d8f3 (diff) |
Use Jira Oauth for user authentication
JIRA: RELENG-12
Users can use their jira accounts for the dashboard. This also allows
the dasboard to open jira tickets for bookings.
Signed-off-by: maxbr <maxbr@mi.fu-berlin.de>
Diffstat (limited to 'tools/pharos-dashboard/dashboard/urls.py')
-rw-r--r-- | tools/pharos-dashboard/dashboard/urls.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/pharos-dashboard/dashboard/urls.py b/tools/pharos-dashboard/dashboard/urls.py index 2223e39c..51d764c4 100644 --- a/tools/pharos-dashboard/dashboard/urls.py +++ b/tools/pharos-dashboard/dashboard/urls.py @@ -21,8 +21,8 @@ urlpatterns = [ url(r'^ci_pods/$', CIPodsView.as_view(), name='ci_pods'), url(r'^dev_pods/$', DevelopmentPodsView.as_view(), name='dev_pods'), url(r'^jenkins_slaves/$', JenkinsSlavesView.as_view(), name='jenkins_slaves'), - url(r'^resource/all/utilization$', ResourceUtilizationView.as_view(), - name='resource_utilization'), + url(r'^resource/all/', LabOwnerView.as_view(), + name='resources'), url(r'^$', DevelopmentPodsView.as_view(), name="index"), ] |