diff --git a/api/chalicelib/saas/utils/html/img/logo.png b/api/chalicelib/saas/utils/html/img/logo.png new file mode 100644 index 000000000..123ca0d76 Binary files /dev/null and b/api/chalicelib/saas/utils/html/img/logo.png differ diff --git a/api/chalicelib/saas/utils/html/img/weekly/logo.png b/api/chalicelib/saas/utils/html/img/weekly/logo.png new file mode 100644 index 000000000..123ca0d76 Binary files /dev/null and b/api/chalicelib/saas/utils/html/img/weekly/logo.png differ diff --git a/api/chalicelib/utils/html/assignment.html b/api/chalicelib/utils/html/assignment.html index 64d40388b..773141018 100644 --- a/api/chalicelib/utils/html/assignment.html +++ b/api/chalicelib/utils/html/assignment.html @@ -403,7 +403,7 @@ width: 25%!important -

Assigned session

+

A recording has been assigned to you

@@ -514,9 +514,9 @@ width: 25%!important

- Report an issue | Report an issue | Take a tour

diff --git a/api/chalicelib/utils/html/img/logo.png b/api/chalicelib/utils/html/img/logo.png index 56b14d369..1ee304b45 100644 Binary files a/api/chalicelib/utils/html/img/logo.png and b/api/chalicelib/utils/html/img/logo.png differ diff --git a/api/chalicelib/utils/html/img/weekly/logo.png b/api/chalicelib/utils/html/img/weekly/logo.png index b7440013c..1ee304b45 100644 Binary files a/api/chalicelib/utils/html/img/weekly/logo.png and b/api/chalicelib/utils/html/img/weekly/logo.png differ diff --git a/api/chalicelib/utils/html/invitation.html b/api/chalicelib/utils/html/invitation.html index 76b7e2d61..079d8b824 100644 --- a/api/chalicelib/utils/html/invitation.html +++ b/api/chalicelib/utils/html/invitation.html @@ -553,9 +553,9 @@ width: 25%!important

- Report an issue | Report an issue | Take a tour

diff --git a/api/env_handler.py b/api/env_handler.py index 3eb7e2ad8..d56dd17c8 100644 --- a/api/env_handler.py +++ b/api/env_handler.py @@ -5,6 +5,8 @@ with open('.chalice/config.json') as json_file: data = json.load(json_file) stages = data.get("stages", {}) for s in stages.keys(): + if environ.get("SITE_URL") is None or environ["SITE_URL"] == '': + environ["SITE_URL"] = environ.get("S3_HOST", "") data["stages"][s]["environment_variables"] = {**stages[s].get("environment_variables", {}), **environ} with open('.chalice/config.json', 'w') as outfile: json.dump(data, outfile, indent=2, sort_keys=True) diff --git a/ee/api/chalicelib/utils/html/assignment.html b/ee/api/chalicelib/utils/html/assignment.html index 64d40388b..773141018 100644 --- a/ee/api/chalicelib/utils/html/assignment.html +++ b/ee/api/chalicelib/utils/html/assignment.html @@ -403,7 +403,7 @@ width: 25%!important -

Assigned session

+

A recording has been assigned to you

@@ -514,9 +514,9 @@ width: 25%!important

- Report an issue | Report an issue | Take a tour

diff --git a/ee/api/chalicelib/utils/html/img/logo.png b/ee/api/chalicelib/utils/html/img/logo.png index 56b14d369..1ee304b45 100644 Binary files a/ee/api/chalicelib/utils/html/img/logo.png and b/ee/api/chalicelib/utils/html/img/logo.png differ diff --git a/ee/api/chalicelib/utils/html/img/weekly/logo.png b/ee/api/chalicelib/utils/html/img/weekly/logo.png index b7440013c..1ee304b45 100644 Binary files a/ee/api/chalicelib/utils/html/img/weekly/logo.png and b/ee/api/chalicelib/utils/html/img/weekly/logo.png differ diff --git a/ee/api/chalicelib/utils/html/invitation.html b/ee/api/chalicelib/utils/html/invitation.html index 76b7e2d61..079d8b824 100644 --- a/ee/api/chalicelib/utils/html/invitation.html +++ b/ee/api/chalicelib/utils/html/invitation.html @@ -553,9 +553,9 @@ width: 25%!important

- Report an issue | Report an issue | Take a tour

diff --git a/ee/api/env_handler.py b/ee/api/env_handler.py index 3eb7e2ad8..d56dd17c8 100644 --- a/ee/api/env_handler.py +++ b/ee/api/env_handler.py @@ -5,6 +5,8 @@ with open('.chalice/config.json') as json_file: data = json.load(json_file) stages = data.get("stages", {}) for s in stages.keys(): + if environ.get("SITE_URL") is None or environ["SITE_URL"] == '': + environ["SITE_URL"] = environ.get("S3_HOST", "") data["stages"][s]["environment_variables"] = {**stages[s].get("environment_variables", {}), **environ} with open('.chalice/config.json', 'w') as outfile: json.dump(data, outfile, indent=2, sort_keys=True)