Unverified Commit de73024f authored by Birte Kristina Friesel's avatar Birte Kristina Friesel
Browse files

Passengerrights: section headers; perltidy

parent aa19f4b0
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
package Travelynx::Controller::Passengerrights;

# Copyright (C) 2020 Daniel Friesel
#
# SPDX-License-Identifier: AGPL-3.0-or-later
@@ -7,12 +8,15 @@ use Mojo::Base 'Mojolicious::Controller';
use DateTime;
use CAM::PDF;

# Internal Helpers

sub mark_if_missed_connection {
	my ( $self, $journey, $next_journey ) = @_;

	my $possible_delay
	  = (   $next_journey->{rt_departure}->epoch
		  - $journey->{sched_arrival}->epoch ) / 60;
		  - $journey->{sched_arrival}->epoch )
	  / 60;
	my $wait_time
	  = ( $next_journey->{rt_departure}->epoch - $journey->{rt_arrival}->epoch )
	  / 60;
@@ -85,6 +89,8 @@ sub mark_substitute_connection {
	}
}

# Controllers

sub list_candidates {
	my ($self) = @_;