From 788e624646eeb677ce4df79c1e66d284297e27c4 Mon Sep 17 00:00:00 2001 From: Piotr Sarnacki Date: Tue, 24 Feb 2015 13:06:01 +0100 Subject: [PATCH] Properly set legal urls --- app/templates/top.hbs | 8 ++++---- config/environment.js | 6 ++++++ 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/app/templates/top.hbs b/app/templates/top.hbs index 46848fbf..55b71c74 100644 --- a/app/templates/top.hbs +++ b/app/templates/top.hbs @@ -43,17 +43,17 @@ {{#if config.pagesEndpoint}} diff --git a/config/environment.js b/config/environment.js index 631f4345..3383b64c 100644 --- a/config/environment.js +++ b/config/environment.js @@ -49,6 +49,12 @@ module.exports = function(environment) { caches: true }; ENV.charmKey = 'gy5gx7dy6dh86hxzkz1wmtvupwvievu'; + ENV.urls = { + legal: ENV.billingEndpoint + "/pages/legal", + imprint: ENV.billingEndpoint + "/pages/imprint", + security: ENV.billingEndpoint + "/pages/security", + terms: ENV.billingEndpoint + "/pages/terms" + } } }