You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services/DroneService.js
+15-2
Original file line number
Diff line number
Diff line change
@@ -229,15 +229,21 @@ function *getSingle(id) {
229
229
updateLocation.schema={
230
230
id: joi.string().required(),
231
231
entity: joi.object().keys({
232
-
lat: joi.number().required(),
233
-
lng: joi.number().required(),
232
+
lat: joi.number(),// Made these not required, we need to turn this into a general drone update endpoint / service (so we can update just status, speed, ...etc)
0 commit comments