Skip to content

Commit

Permalink
Ensure quicktunnel available as default
Browse files Browse the repository at this point in the history
  • Loading branch information
robballantyne committed Aug 3, 2024
1 parent 0d3c7a6 commit ad44151
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def get_index_context(request, message=None):
"services": services,
"urlslug": os.environ.get('IMAGE_SLUG'),
"direct_address": os.environ.get('DIRECT_ADDRESS'),
'quicktunnels': False if os.environ.get('CF_QUICK_TUNNELS', 'false').lower() == "false" else True,
'quicktunnels': False if os.environ.get('CF_QUICK_TUNNELS', 'true').lower() == "false" else True,
'namedtunnels': False if not os.environ.get('CF_TUNNEL_TOKEN') else True
}

Expand Down

0 comments on commit ad44151

Please sign in to comment.