X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Furls.py;h=e84525933b38e07a983cf1cbb48fb8a3e31a1ed9;hb=af8400d08628917ac20abca26801a8666eaaff9e;hp=32d343b8192bdf74d1e410fe4844dfc477151b3f;hpb=02b8a108bb761cdb59ab7db29269a85c269a8c50;p=unfold.git diff --git a/myslice/urls.py b/myslice/urls.py index 32d343b8..e8452593 100644 --- a/myslice/urls.py +++ b/myslice/urls.py @@ -34,6 +34,7 @@ import portal.slicetabtestbeds import portal.slicetabusers import portal.slicetabmeasurements +import portal.managementtababout import portal.managementtabrequests #### high level choices @@ -79,7 +80,10 @@ urls = [ (r'^update/(?P[^/]+)/(?P[^/]+)?/?$', 'rest.update.dispatch'), (r'^create/(?P[^/]+)/(?P[^/]+)?/?$', 'rest.create.dispatch'), (r'^delete/(?P[^/]+)/(?P[^/]+)?/?$', 'rest.delete.dispatch'), + (r'^credentials/(?P[^/]+)/?$', 'rest.credentials.dispatch'), # + # REST monitoring + #(r'^monitor/sfa/getversion/?$', 'rest.monitor.sfaGetVersion'), # #(r'^view/?', include('view.urls')), #(r'^list/slices', 'view.list.slices') @@ -97,6 +101,7 @@ urls = [ (r'^experiment/(?P[^/]+)/?$', portal.slicetabexperiment.ExperimentView.as_view()), # (r'^management/requests/?$', portal.managementtabrequests.ManagementRequestsView.as_view()), + (r'^management/about/?$', portal.managementtababout.ManagementAboutView.as_view()), # url(r'^register/?$', RegistrationView.as_view(), name='registration'), url(r'^terms/?$', TermsView.as_view(), name='terms'),