diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-12 18:16:21 +0200 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2024-08-12 18:16:41 +0200 |
commit | 897b88691c05adda8eaca09c3064b12ecfa74062 (patch) | |
tree | 40c7d273a09d7a6e00f673c0e89bd478151b970e /lib | |
parent | e2b5365810bd49c799b396a98cbb07b54a86f475 (diff) |
backend selection: add homepage links
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Travelynx/Controller/Account.pm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/Travelynx/Controller/Account.pm b/lib/Travelynx/Controller/Account.pm index 08d173a..09aa81a 100644 --- a/lib/Travelynx/Controller/Account.pm +++ b/lib/Travelynx/Controller/Account.pm @@ -1008,13 +1008,16 @@ sub backend_form { for my $backend (@backends) { my $type = 'UNKNOWN'; if ( $backend->{iris} ) { - $type = 'IRIS-TTS'; - $backend->{name} = 'DB'; + $type = 'IRIS-TTS'; + $backend->{name} = 'DB'; + $backend->{longname} = 'Deutsche Bahn'; + $backend->{homepage} = 'https://www.bahn.de'; } elsif ( $backend->{hafas} ) { if ( my $s = $self->hafas->get_service( $backend->{name} ) ) { - $type = 'HAFAS'; + $type = 'HAFAS'; $backend->{longname} = $s->{name}; + $backend->{homepage} = $s->{homepage}; } else { $type = undef; |