Cleaned up some files. Anthology and Datasnipper notes. A few script updates.
This commit is contained in:
@ -415,3 +415,5 @@ Two items from KC:
|
||||
* She could ask a data scientist
|
||||
* Can we still add account groups (empty of courses)
|
||||
* Can Amit handle the new domains and adding the accounts to the CSV.
|
||||
* Another analytic that is asked from others, but not to KC and Katie
|
||||
* I need to know all of the customers that have had at least 1 person access a course. Or complete a course.
|
||||
|
||||
@ -315,9 +315,3 @@ ZJv566jvbzHpfCTqrJyj7Guvjr9i56NpLmz2DA==
|
||||
-----END CERTIFICATE-----
|
||||
```
|
||||
Logout URL: https://login.microsoftonline.com/43f1ba74-0140-48d7-9ded-17e6e43a6ef6/saml2
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="wistia_responsive_padding" style="padding:56.25% 0 0 0;position:relative;"><div class="wistia_responsive_wrapper" style="height:100%;left:0;position:absolute;top:0;width:100%;"><iframe src="https://fast.wistia.net/embed/iframe/abeeiozirh?seo=false&videoFoam=true" title="Visit Capture Overview - ODM Video" allow="autoplay; fullscreen" allowtransparency="true" frameborder="0" scrolling="no" class="wistia_embed" name="wistia_embed" msallowfullscreen width="100%" height="100%"></iframe></div></div>
|
||||
<script src="https://fast.wistia.net/assets/external/E-v1.js" async></script>
|
||||
|
||||
@ -1014,3 +1014,14 @@ Last item for Krystal: Is there a way to automatically surface what is/isn't pop
|
||||
* Can a person "speak" to a KC bot?
|
||||
* How does KC bot search work?
|
||||
* Articulate can layer audio over text
|
||||
|
||||
## 03/06/2024
|
||||
|
||||
### Design Sync - Myra and Krystal
|
||||
|
||||
Showcased the single activity course
|
||||
Need to figure out what is the "critical mass" number of resources that are the most effective for drivers?
|
||||
How many are the perfect amount of courses?
|
||||
There are too many courses.
|
||||
CPO (Contacts (to support) per Order) is always the North star for WMT metrics.
|
||||
Analytics are currently time consuming for her.
|
||||
|
||||
@ -4,7 +4,7 @@ import pprint
|
||||
import csv
|
||||
|
||||
pp = pprint.PrettyPrinter(indent=4)
|
||||
APIKEY = Apikeys.SPS
|
||||
APIKEY = Apikeys.CIN7
|
||||
HEADERS = {
|
||||
"accept": "application/json",
|
||||
"X-Api-Key": APIKEY,
|
||||
@ -28,14 +28,12 @@ def get_courses():
|
||||
nextlink = response["links"]
|
||||
|
||||
for item in response["data"]:
|
||||
status = item ['attributes']['status']
|
||||
status = item['attributes']['status']
|
||||
if status == 'live':
|
||||
cname = item['attributes']['name']
|
||||
# print(item["id"])
|
||||
idict = {item["attributes"]["name"]: item["id"]}
|
||||
# id = item["id"]
|
||||
# name = item["attributes"]["name"]
|
||||
list_of_ids.append(idict)
|
||||
name = item['attributes']['name']
|
||||
if "[Core]" in name:
|
||||
idict = {item["attributes"]["name"]: item["id"]}
|
||||
list_of_ids.append(idict)
|
||||
|
||||
if "next" not in nextlink:
|
||||
break
|
||||
@ -43,7 +41,7 @@ def get_courses():
|
||||
pp.pprint(list_of_ids)
|
||||
# print(len(list_of_ids))
|
||||
with open(
|
||||
"/Users/normrasmussen/Downloads/SPS-Courses.csv", "a+", newline='\n'
|
||||
"/Users/normrasmussen/Downloads/Cin7-Courses.csv", "a+", newline='\n'
|
||||
) as csvfile:
|
||||
for group in list_of_ids:
|
||||
for key, value in group.items():
|
||||
|
||||
@ -11,6 +11,227 @@ var userPassword= 'ecx5pmy!MAN2vgh2knc';
|
||||
var otp = '229118';
|
||||
var schoolUUID = '5692537e-4921-40e8-9c8d-1218b0ffa2da'
|
||||
var courseUUIDs = [
|
||||
' dd8547a8-b3fd-402c-845b-8ced68de7d90',
|
||||
'a79b23c6-9287-40cb-9f18-73ced757a145',
|
||||
'19f228d8-707b-4899-a612-f779e0582ca3',
|
||||
'b91e68f2-b493-4a80-b8fb-0f08471145e4',
|
||||
'3a46d179-e833-411d-9fc9-65f99193e74e',
|
||||
'a0d1f033-20da-4e1c-ba46-dad71b4420af',
|
||||
'98fdcc99-985c-4deb-8a2a-074f80027ef6',
|
||||
'a2d18a42-a961-45ae-b75d-5e9011a0458e',
|
||||
'efdd20d5-0f7c-4cf2-9922-c207021ac902',
|
||||
'6c4ed66c-d240-49ab-963b-c7096854eca4',
|
||||
'd885aaa3-d845-4116-b2cd-6ce4c03ffc7b',
|
||||
'429c8a3e-e4b7-4557-9969-862d7e2261e6',
|
||||
'a754a767-56c0-4a99-98f2-8e9594312bbd',
|
||||
'9d23662c-4855-4b19-892c-f101ef2ab39c',
|
||||
'a48f746e-7ec1-4f77-8350-ba75b1144222',
|
||||
'fe43a7ac-f06a-47f5-aecb-d46f07e285d5',
|
||||
'cd105354-ff0a-4ad2-8425-e99e2326f3bd',
|
||||
'87d6dfed-b0e4-4c7f-b025-f80b2d90d251',
|
||||
'e63675bd-db65-402c-aa2f-7109f8e8cc6f',
|
||||
'98ab2040-4646-4a89-a23f-e4ef7d6f4e2e',
|
||||
'2ab52b30-3fa5-491a-80a9-a48e9a5f122c',
|
||||
'7a95dbd2-7cfa-4bf7-8151-b97154014d00',
|
||||
'2a58b9fb-6c63-4d1d-90ff-bff744f36794',
|
||||
'31915ca1-b445-4086-bac3-65f74f36d4de',
|
||||
'a818c30b-1846-4996-a746-3c74a38a9de4',
|
||||
'00163e87-bf1d-40ce-97a9-1fba4494168d',
|
||||
'9f93cab8-0058-4f24-a2c7-ca8b9e3473e2',
|
||||
'bd3ee6c2-01ef-4a4f-a410-2350251d83d0',
|
||||
'68e0b4f7-512a-4424-96c5-5445351ce4ea',
|
||||
'00f08787-e6f1-4ef8-8999-cd6f56f84b84',
|
||||
'ae861af4-3635-453c-93ed-5f8621789608',
|
||||
'e5669b77-5cd0-41ac-99b0-d0ebe4de0228',
|
||||
'3f02f4d9-666b-4cd7-9282-e1d292d57e99',
|
||||
'eab65a65-b150-4335-a2c0-4c853de2c734',
|
||||
'58282cb8-c177-4273-8219-f14b8051c694',
|
||||
'5f22a592-4045-42fd-8b88-8f68700fc17e',
|
||||
'b707e716-8cac-434b-a851-962f18f4d84f',
|
||||
'02732eea-a545-4616-ac94-d4b1b08380b0',
|
||||
'a69a5762-b59f-4d4b-801f-64edc4ae2953',
|
||||
'99f72da4-2e1f-4153-a4a9-71169f80ba65',
|
||||
'57d90048-c798-4958-af2c-7b4b9c565b70',
|
||||
'7b0ba52d-9ae2-4c3c-9646-067fe5650681',
|
||||
'8b4cec51-56b4-4aca-aa6c-03199f997962',
|
||||
'4329cf31-ceaf-45a2-87a8-8fedf0e77ff6',
|
||||
'88dda481-bf64-4f8f-b32a-35141a6df121',
|
||||
'3c3293f4-666b-48f5-9870-f053c766bb8e',
|
||||
'e353e8eb-ad53-4eaf-b889-51858b69e543',
|
||||
'3c8ad087-16f8-48e4-8568-d644e79ad176',
|
||||
'0a576996-4387-4e69-b849-4ce886d35a74',
|
||||
'fa3387b7-9dec-4539-a98d-f6975f427754',
|
||||
'2465ab2a-9928-47ce-b533-2db316311cf6',
|
||||
'13b4ce9b-62f5-43d9-8159-0134c48326c3',
|
||||
'a4010ef1-45a1-46c2-9e69-ad262e48b570',
|
||||
'03fa9c71-d6d2-4600-b301-420c3a0aa39c',
|
||||
'bf173b8e-d7ce-4f95-9258-e35641033eda',
|
||||
'9c168f49-ae54-44e2-bbc2-54d899e1a18c',
|
||||
'68287a12-2632-4d20-ae83-91ba291bdbed',
|
||||
'e88033c4-10aa-4297-9603-07d572125a98',
|
||||
'c2e80fcd-e315-4f46-ad4f-5fdefd85f32a',
|
||||
'c4e94895-2adf-4196-9aac-3fa830d039c3',
|
||||
'db1849a4-f850-4d14-873b-264c7a8f7148',
|
||||
'f35ff483-f8a6-49ed-a053-2beba1b629c1',
|
||||
'289ca66a-19ea-49e1-aa28-199e53b740ea',
|
||||
'9cea7037-9f00-4d12-88b8-59e15b79b7d4',
|
||||
'baa8adc3-5c88-4ef3-bca5-98467f22f779',
|
||||
'a220e92f-c437-48b4-b19d-665f60a23cf6',
|
||||
'c1a15bdb-c67f-4bab-9cf4-21fe43c29ba1',
|
||||
'ee5bae86-6c5b-4389-bfe1-61fe988e70d5',
|
||||
'fa8d1ec3-14c9-4968-851f-9ab8cce162c2',
|
||||
'9b8cd23d-0b70-4fe3-afd6-96f54c159aa5',
|
||||
'7060e51d-c5cb-4569-a6f5-e444b3acfece',
|
||||
'20e2e746-4abb-4b7d-8723-fa028865efc5',
|
||||
'6d398ea6-2727-4aba-9583-6aeedcf0d648',
|
||||
'5253d85e-0915-4595-bcc9-9aa37f69e0ab',
|
||||
'6b7604eb-7c0c-47a2-aeed-34cc97cb08e2',
|
||||
'3845e89f-373b-4a49-b86d-b5fbe77aa678',
|
||||
'493811b2-73c8-41cb-9d82-8c0003d112c6',
|
||||
'ca0abc2d-d275-4a01-9973-1a43d39fd76d',
|
||||
'440320b2-3e67-4965-a70f-f137267b5778',
|
||||
'0e23ecf0-416a-40be-a63c-4b498a7bc5e9',
|
||||
'06c8e5a5-26d9-4214-9f35-dbf3ea8da931',
|
||||
'7fd0c3d8-0805-4deb-8e53-bf6b8ab4b0c9',
|
||||
'9dd07d16-9687-461b-9d0e-e02a14e86249',
|
||||
'b95a1912-863b-47f8-aedb-45b8ef02cff5',
|
||||
'72583d21-ff2c-4a1e-a3c4-abe3e366c4a3',
|
||||
'adbcfdd4-a11d-40fb-9499-79a4d13d22ff',
|
||||
'046bfa23-f625-45f4-aa30-715f8b6f37a5',
|
||||
'283807fc-82ec-4509-8873-dec932177e33',
|
||||
'7d038271-b131-44bf-8d1e-75502ca18be8',
|
||||
'021e5ac2-cf44-4f1f-a1cb-0c010327e552',
|
||||
'c6f739c4-2970-4b98-a8a2-36dcfb52c4ca',
|
||||
'70f626e5-46e6-47e5-b9ca-a31446ad014c',
|
||||
'aaef1298-4b3b-4f72-a575-a130d49b1d11',
|
||||
'2a4c8c5e-bc85-4a8a-967b-375815c2fed8',
|
||||
'b222f236-6435-4483-a258-0c51cac9b65a',
|
||||
'0b401958-853e-45c2-b492-3df2bd1deaa0',
|
||||
'622d41ff-9643-4a5a-b1eb-a03998e8dc2c',
|
||||
'85a14c5f-74de-4688-870b-00827787e341',
|
||||
'345b8c0b-fc98-4134-b935-14965503e9a1',
|
||||
'edc30c7e-8eee-4f9c-a492-79ad5a38a4c0',
|
||||
'5c0f53fb-bf4d-4c67-a984-9b9204e8bff3',
|
||||
'5ddb05fb-4f84-48d6-8da1-4ce0aabca643',
|
||||
'e365ce57-520c-4e0b-9478-c897b193b7ff',
|
||||
'08bae3cd-0262-487b-b98f-569d4d90fa96',
|
||||
'020fab83-8723-49d8-9fb5-becd13d5c1de',
|
||||
'8039efc8-86a3-44b9-99d2-6ba155690370',
|
||||
'828603ec-27a2-48ee-8aff-6567ca1bf25f',
|
||||
'96e0a71e-6e7c-422b-9759-7e5efce88646',
|
||||
'26ade7bf-5192-4e95-a391-4412f32a2aad',
|
||||
'94d51532-6547-4756-9d95-f91bf5d2ec8e',
|
||||
'c1bc93e4-deff-4c53-9197-fae55299e596',
|
||||
'a018dd13-9419-4176-b707-6ece39d31729',
|
||||
'dd641db0-4a82-42b8-9477-c013e0a57dff',
|
||||
'a7e8e682-aadf-4c92-88ab-bae0b912a4d3',
|
||||
'6efadeb2-d270-461e-8847-6f53752b9fdf',
|
||||
'c8b5b7b9-0ca8-4b00-a7ef-f70ab67be268',
|
||||
'0747cc56-55ed-4273-9358-158e97ed177b',
|
||||
'72a35764-6706-432f-9774-d4c396929929',
|
||||
'0c970975-c370-41cd-8be3-0a46833a80b6',
|
||||
'def8a3ec-68d5-498c-922b-a0676eaba124',
|
||||
'0bbab6c7-4a6a-4583-942c-864a13721f01',
|
||||
'52e32cfa-ce55-4317-8cb6-8bace841bfde',
|
||||
'9a52756b-17a9-4129-969c-d96f8df6d671',
|
||||
'5a19ad83-1e0d-4bff-97fc-777620f2e93f',
|
||||
'a7c5f4c1-3326-4acc-b4b4-c724eeca1bc7',
|
||||
'60fced38-854e-4cd5-afbe-bd5a7b97b935',
|
||||
'048dd3ba-cd88-477a-916a-529ee936a5ff',
|
||||
'96a9b7f5-ff0e-4260-a1bb-3fd31a263854',
|
||||
'd9b18523-f0be-4d50-b070-e4f08366c709',
|
||||
'472a99ba-05ad-4bd6-aa8c-789e61a66081',
|
||||
'5eec0176-6e0e-453f-a50f-94059b2dd5c7',
|
||||
'f0f2a959-4b53-4092-b354-b8371f8b7647',
|
||||
'8a2ee08e-ad39-4fb7-8bc2-cbbd51b0f7f9',
|
||||
'1d85460a-cfa5-4422-9c9b-0e73c07d719b',
|
||||
'47efd48c-2e47-418a-9ed2-0b071f0e7843',
|
||||
'd8f33a5d-6dc9-4aba-a04f-42791532e246',
|
||||
'2a4aa380-f8ff-4823-bd58-36a3093beed0',
|
||||
'a3f84bf1-ea6d-4500-bdda-10a25547eb3b',
|
||||
'5538633b-1d78-4252-9836-85dcd4b67930',
|
||||
'8805dfc7-50b8-4251-8334-0da3a2eaa6b2',
|
||||
'a8520656-acb0-4868-badd-da1a3aa6719a',
|
||||
'8422ea8e-64a8-405b-bed4-afcd5a841b95',
|
||||
'69b538bb-8004-422d-ada5-a1a9eb9e7829',
|
||||
'8c1d6c3c-ae7e-47fd-8089-d72cbbaca070',
|
||||
'6f45495d-cbd7-42d7-8a4f-617bdeba392c',
|
||||
'4d22e68a-2adf-4894-9f60-cc6a52fc978b',
|
||||
'e8a97349-fa4d-42a7-9850-1c0486fafa3c',
|
||||
'973b4eb7-7782-450f-9a59-786e6d353b88',
|
||||
'9ead872c-629d-4dcd-921c-f2af91537218',
|
||||
'08e0d1d4-666b-445c-b6f8-0a7e9ba23350',
|
||||
'40fd2666-4b33-4d47-a331-9c4c60ebca7e',
|
||||
'5c08cd9a-058f-4289-93b7-266aa51da1c1',
|
||||
'9040176d-72d9-439c-a92b-1b265319d00b',
|
||||
'e6fb1775-9a4c-4a73-a7ee-8098a520b924',
|
||||
'024882c6-2e2a-474b-8b6c-6496f94311c3',
|
||||
'0395d381-e772-483f-9579-bd8669d40887',
|
||||
'58d8d732-0458-48a8-bdcb-287a4811c1d2',
|
||||
'20e2c22e-7ad8-4e2b-a5ee-237cfd1fb974',
|
||||
'9127a086-4c5f-486b-9d97-960f3527a837',
|
||||
'67b3b4ed-af82-43a7-91e0-63d2a6726023',
|
||||
'458c6cd1-d599-4123-9148-1493209fb975',
|
||||
'335dbdd6-fcc8-4830-b30d-0b5507fa9c83',
|
||||
'80bce237-c5e4-4099-8e8b-c5a48c57f77b',
|
||||
'31a9966e-270d-482a-9886-a7e47da63279',
|
||||
'0a42598d-311f-4d83-9ecc-6ffdc917eb4b',
|
||||
'43820668-8b67-4d44-986e-a6d0fa8d09c9',
|
||||
'330d3f7d-e50f-4f88-ba8d-ad54f28c0bb2',
|
||||
'985fdfc2-3ee1-4e1f-8d61-19cc2873b8a5',
|
||||
'eea2d1a7-f24b-45a7-8b54-2ab27b0a9791',
|
||||
'0d261579-3419-4b9a-b5c5-4ccca3ef4bf5',
|
||||
'06c5b4ed-043b-43ad-afc4-17e1bde09ab3',
|
||||
'1b6c55c1-17bb-4508-aed9-c07e81959339',
|
||||
'67a02530-5a87-4375-9bab-20ff86eb5b26',
|
||||
'295ba1b1-dc51-4e67-9d7a-c453838d4844',
|
||||
'28438e90-c32f-456a-bdca-4c26f4cae154',
|
||||
'040e309b-54d9-44ad-876b-a3527b5e8af6',
|
||||
'025a80d8-45bc-42b0-9c38-ce81f9557879',
|
||||
'40a8b4de-7f5e-421c-87c5-12fe7a478887',
|
||||
'02adf8d3-91c9-4299-aee4-fa5bb7ec5986',
|
||||
'bcb9c9a5-290e-4515-9efe-c936ff666f4c',
|
||||
'5d0dcfd6-1897-439f-b205-9a0a035241ef',
|
||||
'4a24b2de-e411-42cc-8648-5cf45ecb08c0',
|
||||
'286cdd4e-f1e0-41b7-84b9-c3cadece6fd0',
|
||||
'a87dc832-2aff-4885-9840-1d8e5c682dad',
|
||||
'5d7d1682-0af1-45d8-80b3-81f15d5c679e',
|
||||
'c613db03-4822-4d46-b01f-4b5a6678b6a7',
|
||||
'5e734488-2090-4c6b-85bc-e360dec9af4f',
|
||||
'36893b0b-22c0-4a6f-b062-89e2074d5ea7',
|
||||
'dfab2316-e287-4872-8e54-2e4121f996d9',
|
||||
'2869e7eb-e035-4d6e-8d68-161d2b80dfba',
|
||||
'256f87a8-be2f-4d0f-ba77-d9881fe6b314',
|
||||
'006344dc-4023-41ee-a6aa-0a39ee777c17',
|
||||
'4567a3a3-616e-48a0-b2e6-fe2d17b66157',
|
||||
'7cf5c30a-417e-471a-9a04-bf088bd12f3c',
|
||||
'263d54ea-c158-4cdc-9564-efbd56cc97d2',
|
||||
'9da83afa-156e-405a-ba08-b340f7271c1d',
|
||||
'24672148-4ca8-4867-93cc-30f2d8b91495',
|
||||
'352ba481-7f4c-4522-bb63-eed80592c59d',
|
||||
'cad283ab-acbd-4cda-9ebc-8ebd3ee19b7e',
|
||||
'd9817d59-19a5-4e6a-9302-f81b266322de',
|
||||
'b7de3896-fb21-405e-884b-e120eb1c6e09',
|
||||
'5e4d70f3-e8c0-4302-9dc6-37129ee48a48',
|
||||
'60525725-d48f-4c6b-9d1d-d7ab02922bc7',
|
||||
'9f1efec9-15a2-4c90-b750-00d32fb2255d',
|
||||
'15a340be-4b74-403c-919a-1b110fc17b27',
|
||||
'96731a95-df45-4d72-86f5-fe117f6adce5',
|
||||
'a83e3249-5e70-4547-a6c0-7d7886c47c84',
|
||||
'6bd85836-fad9-48f7-98d6-8b20e323c4b2',
|
||||
'ec46b270-12e9-41f9-a4b9-04060bbb5dfc',
|
||||
'1af531fb-4c2b-4cc4-af87-48208be0b72f',
|
||||
'd7aa81e4-233b-4be6-a343-19b570ae04dc',
|
||||
'0af49382-58c4-4099-87ab-9b6648ee8325',
|
||||
'75ba91aa-88a3-40c6-803a-8debadb2fa6b',
|
||||
'bec9a66b-b75d-4000-ada7-2b130ca99faf',
|
||||
'94efb0ba-71ba-43a0-bc9b-0e4000ac34e0',
|
||||
'fcf8ae50-f293-4a9f-989c-86b851d3277c',
|
||||
'8c1ed3c7-0528-42c7-94f8-340d039590f5',
|
||||
'2f385d53-080c-43ed-8e25-170f7f8163e5',
|
||||
'b0dbbe1d-07ea-48a9-b50b-88d63060d51c',
|
||||
'c33cfd41-f6d1-48b0-bad9-b60cee55817f',
|
||||
'86455b68-0b13-437a-8c94-e2f9b527b424',
|
||||
]
|
||||
var schoolNameToCloneTo = 'Cin7 Employee Academy';
|
||||
|
||||
|
||||
21
Todos.md
21
Todos.md
@ -58,24 +58,19 @@ FEAT: Transcripts page - Clickable courses, Export of table "proof for learner",
|
||||
- [X] Submit 2 CSQLs for Zenjob - one for PX and one for additional instance of CE
|
||||
- [X] Zenjob - Clean "Internal Zenjob Testing" - remove everyone without a Zenjob email address. One domain - zenjob.com.
|
||||
- [ ] Part 2 - Add people to academy and add them to Internal Zenjob Testing group.
|
||||
- [ ] Ask about the following:
|
||||
- [-] Ask about the following:
|
||||
- [ ] Can a person "speak" to a KC bot?
|
||||
- [ ] How does KC bot search work?
|
||||
- [ ] Will NP have improved search in 2024? Will AI be included?
|
||||
- [X] Will NP have improved search in 2024? Will AI be included?
|
||||
- [ ] Walmart: Back button from overview page takes a while to respond.
|
||||
- [ ] Mattr: Research [Avner's Slack
|
||||
- [X] Mattr: Research [Avner's Slack
|
||||
message](https://northpasshq.slack.com/archives/C04RER4PH09/p1709147957374999?thread_ts=1709081535.497109&cid=C04RER4PH09) on how they can grade a coding assignment in or out of CE.
|
||||
|
||||
## 02-29-2024
|
||||
|
||||
- [-] Renewal Tracker Tasks - start with Q2:
|
||||
- [-] Meet and tell CSMs.
|
||||
- [ ] CSMs to enter at least one above the line contact - if multiple, choose highest
|
||||
- [ ] Assign buddy as per Kat's message. Buddy's do not need to be notified.
|
||||
- [ ] Buddy is to ask for renewal sentiment. "Is there anything we need to be aware of for renewal?" Check LinkedIn for contacts.
|
||||
- [ ] Q2 finished by second week of March to give us enough time to plan/react --> Q3 - let's focus on getting these out by end of March --> Q4 - End of April
|
||||
- [ ] Standard ghost follow up every 2 weeks.
|
||||
- [ ] StopItSolutions, change button destination depending on property. Code block below is how you'd run it after page load and where the custom property lives.
|
||||
- [ ] Q2 finished by second week of March to give us enough time to plan/react --> Q3 - let's focus on getting these out by end of March --> Q4 - End of April
|
||||
- [X] Meet and tell CSMs.
|
||||
- [X] StopItSolutions, change button destination depending on property. Code block below is how you'd run it after page load and where the custom property lives.
|
||||
|
||||
```html
|
||||
<script>
|
||||
@ -103,3 +98,7 @@ message](https://northpasshq.slack.com/archives/C04RER4PH09/p1709147957374999?th
|
||||
- [ ] 'Since joining Gainsight we have a mandate to scale our community. You guys are doing it well. How do you do XF work? How did you get those numbers? How did you tie it to retention?'
|
||||
- [ ] Internal change management. They don't need to reference Northpass. You've mastered it, we'd love for you to do a session with our customers.
|
||||
|
||||
## 03-06-2024
|
||||
|
||||
- [ ] Begin project plan of moving Spark from Groups to Catalog.
|
||||
- [ ] Create template of renewal exec check in for team.
|
||||
|
||||
1
wan_ip.txt
Normal file
1
wan_ip.txt
Normal file
@ -0,0 +1 @@
|
||||
104.246.2.167
|
||||
Reference in New Issue
Block a user