mirror of
https://github.com/DeviceFarmer/stf.git
synced 2026-04-18 16:13:24 +02:00
Add IMSI to device details.
This commit is contained in:
@@ -192,6 +192,12 @@ module.exports = function DeviceColumnService($filter, gettext) {
|
||||
return device.phone ? device.phone.imei : ''
|
||||
}
|
||||
})
|
||||
, imsi: TextCell({
|
||||
title: gettext('Phone IMSI')
|
||||
, value: function(device) {
|
||||
return device.phone ? device.phone.imsi : ''
|
||||
}
|
||||
})
|
||||
, iccid: TextCell({
|
||||
title: gettext('Phone ICCID')
|
||||
, value: function(device) {
|
||||
|
||||
Reference in New Issue
Block a user