From 69ead4af9f8fc4755a5772e9b81f2a510c5f0a59 Mon Sep 17 00:00:00 2001 From: mashal-m Date: Mon, 10 Oct 2022 15:03:30 +0500 Subject: [PATCH 1/2] refactor: migrate off paragon modal deprecated component --- frontend-app-communications | 1 + 1 file changed, 1 insertion(+) create mode 160000 frontend-app-communications diff --git a/frontend-app-communications b/frontend-app-communications new file mode 160000 index 00000000..0130b527 --- /dev/null +++ b/frontend-app-communications @@ -0,0 +1 @@ +Subproject commit 0130b5279f9899d4ca63337575e5ec5d3607ac27 From c97eb428567a2240b3ce1dfef805d56502f5be97 Mon Sep 17 00:00:00 2001 From: mashal-m Date: Mon, 4 Dec 2023 16:02:11 +0500 Subject: [PATCH 2/2] feat: add account and profile urls in env files --- .env | 2 ++ .env.development | 2 ++ .env.test | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.env b/.env index bab3125f..d4db01c5 100644 --- a/.env +++ b/.env @@ -6,6 +6,8 @@ CSRF_TOKEN_API_PATH='' ECOMMERCE_BASE_URL='' LANGUAGE_PREFERENCE_COOKIE_NAME='' LMS_BASE_URL='' +ACCOUNT_SETTINGS_URL='' +ACCOUNT_PROFILE_URL='' LOGIN_URL='' LOGOUT_URL='' LOGO_URL='' diff --git a/.env.development b/.env.development index 680ab334..f33fbf83 100644 --- a/.env.development +++ b/.env.development @@ -7,6 +7,8 @@ CSRF_TOKEN_API_PATH='/csrf/api/v1/token' ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' +ACCOUNT_SETTINGS_URL='http://localhost:1997' +ACCOUNT_PROFILE_URL='http://localhost:1995' LOGIN_URL='http://localhost:18000/login' LOGOUT_URL='http://localhost:18000/logout' LOGO_URL=https://edx-cdn.org/v3/default/logo.svg diff --git a/.env.test b/.env.test index 049d08a5..ab036669 100644 --- a/.env.test +++ b/.env.test @@ -5,6 +5,8 @@ CSRF_TOKEN_API_PATH='/csrf/api/v1/token' ECOMMERCE_BASE_URL='http://localhost:18130' LANGUAGE_PREFERENCE_COOKIE_NAME='openedx-language-preference' LMS_BASE_URL='http://localhost:18000' +ACCOUNT_SETTINGS_URL='http://localhost:1997' +ACCOUNT_PROFILE_URL='http://localhost:1995' LOGIN_URL='http://localhost:18000/login' LOGOUT_URL='http://localhost:18000/logout' LOGO_URL=https://edx-cdn.org/v3/default/logo.svg