Signed-off-by: Bill Erickson <berickxx@gmail.com>
Signed-off-by: Jane Sandberg <js7389@princeton.edu>
Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
case 'ROUTE_ITEM':
this.audio.play(result.hold ?
'info.checkin.transit.hold' : 'info.checkin.transit');
+
+ if (params.noop) {
+ console.debug("Skipping route dialog on 'noop' checkin");
+ return Promise.resolve(result);
+ }
+
this.components.routeDialog.checkin = result;
return this.findCopyTransit(result)
.then(_ => this.components.routeDialog.open().toPromise())