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

backend selection: Hide Resrobot and TPG

These backends do not provide trip/journey details, making them useless for
travelynx
parent 298b0990
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1026,6 +1026,10 @@ sub backend_form {
		$backend->{type} = $type;
	}

	# These backends lack a journey endpoint and are useless for travelynx
	@backends
	  = grep { $_->{name} ne 'Resrobot' and $_->{name} ne 'TPG' } @backends;

	my $iris = shift @backends;

	@backends