diff options
author | Daniel Friesel <derf@finalrewind.org> | 2020-07-27 18:53:22 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2020-07-27 18:53:22 +0200 |
commit | f08bdaca5cafc6840cbf8489d7790656bf38f9e4 (patch) | |
tree | e0fa4c3c68f19f600f4febe7a54ede46c25a07d2 /templates/account.html.ep | |
parent | cdb7469f00258aac6fb96b93b2cea2780a30d06e (diff) |
Move user model to a separate module
Diffstat (limited to 'templates/account.html.ep')
-rw-r--r-- | templates/account.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index efe2ee7..8df5008 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -31,7 +31,7 @@ <h1>Account</h1> % my $acc = current_user(); % my $hook = get_webhook(); -% my $use_history = account_use_history($acc->{id}); +% my $use_history = users->use_history(uid => $acc->{id}); <div class="row"> <div class="col s12"> <table class="striped"> |