From: Loic Baron Date: Thu, 24 Jul 2014 09:27:06 +0000 (+0200) Subject: Slice request: works with authority_hrn if Name is not defined, this allows to run... X-Git-Tag: myslice-1.0~49^2~2^2 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=a064b0b637a0d948302d1bc200440683e0d688a1;hp=9fdfc897b3aa7485a3097cc05715327d03ba25bf;p=myslice.git Slice request: works with authority_hrn if Name is not defined, this allows to run MySlice without MyPLC and without Extra infos in 3rd party (Ex: Fibre) --- diff --git a/portal/slicerequestview.py b/portal/slicerequestview.py index 222a28eb..598aca39 100644 --- a/portal/slicerequestview.py +++ b/portal/slicerequestview.py @@ -34,6 +34,7 @@ class SliceRequestView (LoginRequiredAutoLogoutView, ThemeView): slice_name ='' purpose='' exp_url='' + authority_hrn = None # Retrieve the list of authorities authorities_query = Query.get('authority').select('name', 'authority_hrn') authorities = execute_admin_query(wsgi_request, authorities_query) @@ -98,7 +99,7 @@ class SliceRequestView (LoginRequiredAutoLogoutView, ThemeView): authority_hrn = authority['authority_hrn'] # Handle the case when the template uses only hrn and not name - if not authority_hrn: + if authority_hrn is None: authority_hrn = wsgi_request.POST.get('org_name', '') slice_request = {