Skip to content

Commit

Permalink
fix: link to profile in dev
Browse files Browse the repository at this point in the history
In development, the link to the profile page was incorrect in the header
bar of the learning MFE (and other MFEs) as well. Note that the link was
correct in the dashboard.
  • Loading branch information
regisb committed Aug 3, 2023
1 parent 0fc643f commit 2b305f1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/20230802_123027_regis_fix_dev_profile_link.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- [Bugfix] In development, fix link to profile in header. (by @regisb)
4 changes: 2 additions & 2 deletions tutormfe/patches/openedx-lms-development-settings
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ MFE_CONFIG["LEARNING_BASE_URL"] = "http://{{ MFE_HOST }}:{{ app["port"] }}"
{% elif app_name == "ora-grading" %}
ORA_GRADING_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/ora-grading"
{% elif app_name == "profile" %}
PROFILE_MICROFRONTEND_URL = "{% if ENABLE_HTTPS %}https://{% else %}http://{% endif %}{{ MFE_HOST }}:{{ app["port"] }}/profile/u/"
MFE_CONFIG["ACCOUNT_PROFILE_URL"] = "http://{{ MFE_HOST }}:{{ app["port"] }}"
PROFILE_MICROFRONTEND_URL = "http:/{{ MFE_HOST }}:{{ app["port"] }}/profile/u/"
MFE_CONFIG["ACCOUNT_PROFILE_URL"] = "http://{{ MFE_HOST }}:{{ app["port"] }}/profile"
{% elif app_name == "communications" %}
COMMUNICATIONS_MICROFRONTEND_URL = "http://{{ MFE_HOST }}:{{ app["port"] }}/communications"
MFE_CONFIG["SCHEDULE_EMAIL_SECTION"] = True
Expand Down

0 comments on commit 2b305f1

Please sign in to comment.