From 9569c33ec2529b54e61fb51cdd9572cf09013565 Mon Sep 17 00:00:00 2001 From: Kimmo Koskinen Date: Sat, 11 Jun 2016 20:52:14 +0300 Subject: [PATCH] Use app.roihu2016.fi instead of roihuapp-demo.herokuapp.com --- RoihuApp/config.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/RoihuApp/config.js b/RoihuApp/config.js index 343e3c0..ff45060 100644 --- a/RoihuApp/config.js +++ b/RoihuApp/config.js @@ -1,4 +1,6 @@ +const baseUrl = "https://app.roihu2016.fi"; + export const config = { - apiUrl: "https://roihuapp-demo.herokuapp.com/api", - loginUrl: "https://roihuapp-demo.herokuapp.com/saml/login" + apiUrl: baseUrl + "/api", + loginUrl: baseUrl + "/saml/login" };