Added deviceUpdateEvent
All checks were successful
FarmMaps.Develop/FarmMapsLib/develop This commit looks good

This commit is contained in:
Willem Dantuma
2019-12-10 18:14:48 +01:00
parent 5d7fd63adc
commit 2e0b090fb7
2 changed files with 247 additions and 234 deletions

View File

@@ -77,6 +77,10 @@ export class AppComponent implements OnInit, OnDestroy {
action = new commonActions.TaskErrorEvent(event.itemCode, event.attributes);
break;
}
case "deviceUpdate": {
action = new commonActions.DeviceUpdateEvent(event.itemCode, event.attributes);
break;
}
}
return action;
}