Fix Fleets info on boards.

Now the commands of the board show the fleet field

Change-Id: Ie2c4174dc93941f2e753f386a9ccfbeb3a1c8ee8
This commit is contained in:
Fabio Verboso 2018-10-03 12:01:52 +02:00
parent bed504ca53
commit 8ca932df38
1 changed files with 4 additions and 1 deletions

View File

@ -63,7 +63,7 @@ class Resource(object):
'network': 'Network',
'ip': 'ip',
'description': 'Description',
'fleet': 'Fleet',
#
# 'address': 'Address',
# 'async': 'Async',
@ -155,10 +155,12 @@ BOARD_DETAILED_RESOURCE = Resource(
'name',
'type',
'status',
'fleet',
'code',
'session',
'mobile',
'extra',
'created_at',
'updated_at',
'location',
@ -173,6 +175,7 @@ BOARD_RESOURCE = Resource(
['uuid',
'name',
'type',
'fleet',
'status',
'session',
])