summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2022-02-16 20:39:49 +0100
committerDaniel Friesel <derf@finalrewind.org>2022-02-16 20:39:49 +0100
commitef3252863e28905fe96a49a91e5a62c156c69e6e (patch)
treebea7dc3685a41ed86c684f130e6e33f2707d5a43
parent8f906da9c29fdb63699fbfa4e82deba560b62ca4 (diff)
Traewelling::get: Use named args
-rw-r--r--lib/Travelynx/Controller/Traewelling.pm6
-rw-r--r--lib/Travelynx/Model/Traewelling.pm8
-rw-r--r--templates/account.html.ep2
3 files changed, 9 insertions, 7 deletions
diff --git a/lib/Travelynx/Controller/Traewelling.pm b/lib/Travelynx/Controller/Traewelling.pm
index e906b1f..d3e6d6c 100644
--- a/lib/Travelynx/Controller/Traewelling.pm
+++ b/lib/Travelynx/Controller/Traewelling.pm
@@ -30,7 +30,7 @@ sub settings {
password => $password
)->then(
sub {
- my $traewelling = $self->traewelling->get($uid);
+ my $traewelling = $self->traewelling->get( uid => $uid );
$self->param( sync_source => 'none' );
$self->render(
'traewelling',
@@ -53,7 +53,7 @@ sub settings {
}
elsif ( $self->param('action') and $self->param('action') eq 'logout' ) {
$self->render_later;
- my $traewelling = $self->traewelling->get($uid);
+ my $traewelling = $self->traewelling->get( uid => $uid );
$self->traewelling_api->logout_p(
uid => $uid,
token => $traewelling->{token}
@@ -88,7 +88,7 @@ sub settings {
return;
}
- my $traewelling = $self->traewelling->get($uid);
+ my $traewelling = $self->traewelling->get( uid => $uid );
if ( $traewelling->{push_sync} ) {
$self->param( sync_source => 'travelynx' );
diff --git a/lib/Travelynx/Model/Traewelling.pm b/lib/Travelynx/Model/Traewelling.pm
index a334c1d..e05ff7d 100644
--- a/lib/Travelynx/Model/Traewelling.pm
+++ b/lib/Travelynx/Model/Traewelling.pm
@@ -94,11 +94,13 @@ sub unlink {
}
sub get {
- my ( $self, $uid ) = @_;
- $uid //= $self->current_user->{id};
+ my ( $self, %opt ) = @_;
+
+ my $uid = $opt{uid};
+ my $db = $opt{db} // $self->{pg}->db;
my $res_h
- = $self->{pg}->db->select( 'traewelling_str', '*', { user_id => $uid } )
+ = $db->select( 'traewelling_str', '*', { user_id => $uid } )
->expand->hash;
$res_h->{latest_run} = epoch_to_dt( $res_h->{latest_run_ts} );
diff --git a/templates/account.html.ep b/templates/account.html.ep
index 5e30c77..b2877f0 100644
--- a/templates/account.html.ep
+++ b/templates/account.html.ep
@@ -36,7 +36,7 @@
% my $acc = current_user();
% my $hook = get_webhook();
-% my $traewelling = traewelling->get($acc->{id});
+% my $traewelling = traewelling->get(uid => $acc->{id});
% my $use_history = users->use_history(uid => $acc->{id});
<div class="row">
<div class="col s12">