diff options
author | Daniel Friesel <derf@finalrewind.org> | 2022-09-24 18:53:04 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2022-09-24 18:53:04 +0200 |
commit | e54130ad6ea805cc04db17a3f614cb4bd25ca3f0 (patch) | |
tree | 4ffe1b52cc44a2c75c1614d5c36c244d06716609 /lib/Travelynx/Command/maintenance.pm | |
parent | 1c7779e94ef6859348570b9c1b5f2f8a27e32c1f (diff) |
optionally show local transit connections as well
Diffstat (limited to 'lib/Travelynx/Command/maintenance.pm')
-rw-r--r-- | lib/Travelynx/Command/maintenance.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Travelynx/Command/maintenance.pm b/lib/Travelynx/Command/maintenance.pm index d6380fd..60667b7 100644 --- a/lib/Travelynx/Command/maintenance.pm +++ b/lib/Travelynx/Command/maintenance.pm @@ -149,6 +149,7 @@ sub run { my $transit_res = $db->delete( 'in_transit', { user_id => $uid } ); my $hooks_res = $db->delete( 'webhooks', { user_id => $uid } ); my $trwl_res = $db->delete( 'traewelling', { user_id => $uid } ); + my $lt_res = $db->delete( 'localtransit', { user_id => $uid } ); my $password_res = $db->delete( 'pending_passwords', { user_id => $uid } ); my $user_res = $db->delete( 'users', { id => $uid } ); |