summaryrefslogtreecommitdiff
path: root/lib/Travelynx/Controller/Api.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Travelynx/Controller/Api.pm')
-rwxr-xr-xlib/Travelynx/Controller/Api.pm20
1 files changed, 15 insertions, 5 deletions
diff --git a/lib/Travelynx/Controller/Api.pm b/lib/Travelynx/Controller/Api.pm
index c7e58a9..8d2d2a7 100755
--- a/lib/Travelynx/Controller/Api.pm
+++ b/lib/Travelynx/Controller/Api.pm
@@ -258,14 +258,21 @@ sub travel_v1 {
$train_id = $train->train_id;
}
- my ( $train, $error )
- = $self->checkin( $from_station, $train_id, $uid );
+ my ( $train, $error ) = $self->checkin(
+ station => $from_station,
+ train_id => $train_id,
+ uid => $uid
+ );
if ( $payload->{comment} and not $error ) {
$self->update_in_transit_comment(
sanitize( q{}, $payload->{comment} ), $uid );
}
if ( $to_station and not $error ) {
- ( $train, $error ) = $self->checkout( $to_station, 0, $uid );
+ ( $train, $error ) = $self->checkout(
+ station => $to_station,
+ force => 0,
+ uid => $uid
+ );
}
if ($error) {
$self->render(
@@ -307,8 +314,11 @@ sub travel_v1 {
sanitize( q{}, $payload->{comment} ), $uid );
}
- my ( $train, $error )
- = $self->checkout( $to_station, $payload->{force} ? 1 : 0, $uid );
+ my ( $train, $error ) = $self->checkout(
+ station => $to_station,
+ force => $payload->{force} ? 1 : 0,
+ uid => $uid
+ );
if ($error) {
$self->render(
json => {