diff --git a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_account_tabs.html.liquid b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_account_tabs.html.liquid new file mode 100644 index 00000000..f4de6c8e --- /dev/null +++ b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_account_tabs.html.liquid @@ -0,0 +1,23 @@ +{% capture settings_path %}{% route account %}{% endcapture %} +{% capture transcript_path %}{% route transcript %}{% endcapture %} + +{% if current_person.signed_in? %} +{% unless current_school.sso_active? %} + +{% endunless %} +{% endif %} diff --git a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_carousel_coaches_sales.html.liquid b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_carousel_coaches_sales.html.liquid index 7d97fdac..302bd384 100644 --- a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_carousel_coaches_sales.html.liquid +++ b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/_carousel_coaches_sales.html.liquid @@ -173,7 +173,7 @@ @@ -181,7 +181,7 @@ \ No newline at end of file + diff --git a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/luke-whitelam.html.liquid b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/luke-whitelam.html.liquid index ced6dc31..e28c3583 100644 --- a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/luke-whitelam.html.liquid +++ b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/luke-whitelam.html.liquid @@ -7,7 +7,7 @@
-
Luke Whitelam
+
Luke Whitelum
Strategic Growth NSW
diff --git a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/transcript.html.liquid b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/transcript.html.liquid new file mode 100644 index 00000000..b6cb5428 --- /dev/null +++ b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/transcript.html.liquid @@ -0,0 +1,8 @@ +{% include "header" %} +{% include "account_tabs" %} + +
+ {% transcript %} +
+ +{% include "footer" %} diff --git a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/webinars.html.liquid b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/webinars.html.liquid index fd0cf266..dcf36da7 100644 --- a/Custom_Templates/customer_templates/LJ Hooker Lighthouse/webinars.html.liquid +++ b/Custom_Templates/customer_templates/LJ Hooker Lighthouse/webinars.html.liquid @@ -17,7 +17,7 @@ {% endif %} {% endfor %} -
+
{% endif %}
@@ -41,10 +41,10 @@
See All -
+ - {% - include "categories_carousel", + {% + include "categories_carousel", items: courses.enrolled, topic: enrolled_category, %} @@ -168,4 +168,4 @@ } } - + \ No newline at end of file diff --git a/Custom_Templates/customer_templates/Skuid/homepage.html.liquid b/Custom_Templates/customer_templates/Skuid/homepage.html.liquid index d3d4cc72..9262f153 100644 --- a/Custom_Templates/customer_templates/Skuid/homepage.html.liquid +++ b/Custom_Templates/customer_templates/Skuid/homepage.html.liquid @@ -92,9 +92,6 @@ {% endif%} {% endfor %} - {{ school.custom_properties.banner_text}} - - {% if view_more_counter >= 4%} {% endif %} diff --git a/Scripts/Anthology/workato-update-user-groups-manual-domain.py b/Scripts/Anthology/workato-update-user-groups-manual-domain.py new file mode 100644 index 00000000..73078baa --- /dev/null +++ b/Scripts/Anthology/workato-update-user-groups-manual-domain.py @@ -0,0 +1,27 @@ +import json +import requests + +WEBHOOK_ENDPOINT = "https://webhooks.workato.com/webhooks/rest/604b4fc0-fcd9-4f3b-b715-b42d7f740ba6/domains-updated" +PAYLOAD = { + 'domain_to_update': { + 'domain': "swtc.edu", + 'group_ids': [ + "2b5267b2-ce87-4e77-ad88-5cfec80496b9", + "59ccfdeb-8a8a-4693-b4fa-27034192071c", + "84d32175-8cb8-4fb0-95cc-6ae13d40aaaa", + "5f35e542-a8cf-4422-8e87-466cdca62864", + "55bae3db-5f62-4be3-823a-bcb429b8a2b2", + "4754b85b-e7a6-41a8-b0e9-5e02c58ebc38", + "fa8914be-0986-460c-884d-9973a9622045", + "b9f734fa-de0d-4a0b-9ce2-c092126e1d8d", + "106775db-a00d-4956-bf27-97ea269bb001", + "594cd6c0-17db-4241-be56-ad28a8db4f7b", + ], + } +} + +HEADERS = {"content-type": "application/json" } + +response = requests.post(WEBHOOK_ENDPOINT, data=json.dumps(PAYLOAD)) +print(response.status_code) +print(response.text)