1
0
mirror of https://github.com/dkmstr/openuds.git synced 2025-01-03 01:17:56 +03:00

As service providers grows, it's easier to identify Services using "Provider name"\"Service name", at new deployed service form, so i have added this.

This commit is contained in:
Adolfo Gómez 2012-11-15 08:53:24 +00:00
parent 04192f3ec9
commit 85dd9b0537

View File

@ -103,6 +103,7 @@ def getAllServices(credentials):
for serv in Service.objects.all().order_by('name'):
try:
val = dictFromService(serv)
val['name'] = serv.provider.name + '\\' + val['name']
res.append(val)
except Exception, e:
logger.debug(e)