diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/account.html.ep | 2 | ||||
-rw-r--r-- | templates/api_documentation.html.ep | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/templates/account.html.ep b/templates/account.html.ep index 418291c..9c5d88e 100644 --- a/templates/account.html.ep +++ b/templates/account.html.ep @@ -177,7 +177,7 @@ </div> </div> -% my $token = get_api_token(); +% my $token = stash('api_token') // {}; <div class="row"> <div class="col s12"> <h2>API</h2> diff --git a/templates/api_documentation.html.ep b/templates/api_documentation.html.ep index 55cd54a..c9125a2 100644 --- a/templates/api_documentation.html.ep +++ b/templates/api_documentation.html.ep @@ -1,10 +1,6 @@ % my $api_root = $self->url_for('/api/v1')->to_abs->scheme('https'); -% my $token = {}; -% my $uid; -% if (is_user_authenticated()) { - % $uid = current_user()->{id}; - % $token = get_api_token(); -% } +% my $token = stash('api_token') // {}; +% my $uid = stash('uid') // q{}; <h1>API</h1> |