From 3ff2a0a359dc2a57573c56eead2852ebdfe1ed6b Mon Sep 17 00:00:00 2001 From: David Joy Date: Tue, 21 Apr 2020 13:06:15 -0400 Subject: [PATCH] fix: fixing LOGOUT_URL for dev and test (#374) --- .env.development | 2 +- .env.test | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.development b/.env.development index d71fda3..f48ba25 100644 --- a/.env.development +++ b/.env.development @@ -8,7 +8,7 @@ ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' LOGIN_URL='http://localhost:18000/login' -LOGOUT_URL='http://localhost:18000/login' +LOGOUT_URL='http://localhost:18000/logout' MARKETING_SITE_BASE_URL='http://localhost:18000' ORDER_HISTORY_URL='localhost:1996/orders' REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh' diff --git a/.env.test b/.env.test index 867fc1d..4b8d98e 100644 --- a/.env.test +++ b/.env.test @@ -6,7 +6,7 @@ ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' LOGIN_URL='http://localhost:18000/login' -LOGOUT_URL='http://localhost:18000/login' +LOGOUT_URL='http://localhost:18000/logout' MARKETING_SITE_BASE_URL='http://localhost:18000' ORDER_HISTORY_URL='localhost:1996/orders' REFRESH_ACCESS_TOKEN_ENDPOINT='http://localhost:18000/login_refresh'