diff options
author | Daniel Friesel <derf@finalrewind.org> | 2019-04-13 12:17:19 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2019-04-13 12:18:26 +0200 |
commit | 80a6317ac55de020f606a5ca114466d3f0100511 (patch) | |
tree | 9bd5104c3f07cda2f07f3a783e71e1e5b948f943 /templates/layouts | |
parent | 61b1ef398e275a110173ed77556ff211adc1ba82 (diff) |
Use travelynx.conf for configuration and secrets
This avoids having to specify secrets in the environment, where they can leak
easily.
Diffstat (limited to 'templates/layouts')
-rw-r--r-- | templates/layouts/default.html.ep | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/layouts/default.html.ep b/templates/layouts/default.html.ep index b76f1ab..1f82a2d 100644 --- a/templates/layouts/default.html.ep +++ b/templates/layouts/default.html.ep @@ -23,7 +23,7 @@ <nav class="deep-purple"> <div class="nav-wrapper container"> - <a href="/" class="brand-logo left"><%= $ENV{TRAVELYNX_DB_NAME} =~ m{travelynx_dev} ? 'develynx' : 'travelynx' %></a> + <a href="/" class="brand-logo left"><%= app->config->{db}->{database} =~ m{travelynx_dev} ? 'develynx' : 'travelynx' %></a> <ul id="nav-mobile" class="right"> % if (is_user_authenticated()) { <li class="<%= navbar_class('/history') %>"><a href='/history' title="History"><i class="material-icons">history</i></a></li> |