X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=myslice%2Furls.py;h=a4dcf96a29d7c47fb03c787403da6ed8b1ed3bc8;hb=7f055ed854bca5d058c0885a5ec2eaf9882c3a53;hp=32d343b8192bdf74d1e410fe4844dfc477151b3f;hpb=02b8a108bb761cdb59ab7db29269a85c269a8c50;p=unfold.git diff --git a/myslice/urls.py b/myslice/urls.py index 32d343b8..a4dcf96a 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[^/]+)/(?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'),