Fixed id on auth list on REST api

This commit is contained in:
Adolfo Gómez García 2017-11-03 12:13:32 +01:00
parent 739ee728d3
commit 238f08b7dd

View File

@ -140,7 +140,7 @@ class Auths(Handler):
for a in Authenticator.objects.all():
if a.getType().isCustom() is False:
yield {
'authId': a.id,
'authId': a.uuid,
'authSmallName': str(a.small_name),
'auth': a.name,
}