Anthology Scripts
This commit is contained in:
@ -48,6 +48,7 @@ Zoom URL:
|
|||||||
|
|
||||||
TODO: Ask SE if we can hide Additional Information in milestone _unless_ completed milestone is shown.
|
TODO: Ask SE if we can hide Additional Information in milestone _unless_ completed milestone is shown.
|
||||||
Today webinar:
|
Today webinar:
|
||||||
|
|
||||||
* https://achievece.zoom.us/j/85182404988
|
* https://achievece.zoom.us/j/85182404988
|
||||||
* https://achievece.com/pharmacy-webinar/
|
* https://achievece.com/pharmacy-webinar/
|
||||||
|
|
||||||
@ -57,8 +58,41 @@ The most important part is compliance and customization. Each course needs to ha
|
|||||||
The per course uniqueness is the accreditation board. Each course is accredited by a different board.
|
The per course uniqueness is the accreditation board. Each course is accredited by a different board.
|
||||||
|
|
||||||
Cert examples:
|
Cert examples:
|
||||||
|
|
||||||
* `https://www.dropbox.com/scl/fi/w0zt8yygpvp4arb2p9r98/Certificate-completion-2023_General.jpg?rlkey=dgox9j94v22gw7yvctrravxj3&dl=1`
|
* `https://www.dropbox.com/scl/fi/w0zt8yygpvp4arb2p9r98/Certificate-completion-2023_General.jpg?rlkey=dgox9j94v22gw7yvctrravxj3&dl=1`
|
||||||
* `https://www.dropbox.com/scl/fi/g0ykns5dbql0aglw2pjek/Certificate-completion-2023_Medicine_CEC.jpg?rlkey=84lexxdzlkbj0w591hdx8yq78&dl=1`
|
* `https://www.dropbox.com/scl/fi/g0ykns5dbql0aglw2pjek/Certificate-completion-2023_Medicine_CEC.jpg?rlkey=84lexxdzlkbj0w591hdx8yq78&dl=1`
|
||||||
|
|
||||||
WARN: They need custom certs PER course, which we don't do. I've involved Charles and Travis to solve for this.
|
WARN: They need custom certs PER course, which we don't do. I've involved Charles and Travis to solve for this.
|
||||||
Charles will reach out to Luke if we can't figure this out.
|
Charles will reach out to Luke if we can't figure this out.
|
||||||
|
|
||||||
|
## 10/31/2023
|
||||||
|
|
||||||
|
### Regroup on Rationale, Certs, etc
|
||||||
|
|
||||||
|
William Whatley - joined, product development? Worked with Luke in a business sense for over 6 years.
|
||||||
|
|
||||||
|
1. Certificates -
|
||||||
|
* Wished it was faster
|
||||||
|
* Ok - that it's on the next sprint. Not ideal, but they will take what they can get.
|
||||||
|
* Wants to have the ability to switch out the background based on a person/course?
|
||||||
|
* Ideal Scenario: Profess type and course for cert background. Person A/B complete a course. They have dif backgrounds.
|
||||||
|
* Bonus: NOT give certs (revoke?) based on profession type. They should be blocked from courses completely.
|
||||||
|
2. Rationale -
|
||||||
|
* We need to wait for Austin to finish the design work.
|
||||||
|
* Wants a timeline to plan for adding Rationale into the academy.
|
||||||
|
3. Closed Captioning -
|
||||||
|
* Turn off the CC button for all videos, no matter what.
|
||||||
|
* Not important for the MVP.
|
||||||
|
4. User Dashboard -
|
||||||
|
* Certificates course cards should go straight to the certificate. If course completed and showing in certs page, show
|
||||||
|
cert.
|
||||||
|
* Luke sent the hero image, still not uploaded
|
||||||
|
* Don't wrap categories
|
||||||
|
5. User Enrollments -
|
||||||
|
* Didn't know you could enroll via People tab.
|
||||||
|
* Wants to make sure things line up with their db.
|
||||||
|
|
||||||
|
|
||||||
|
Other:
|
||||||
|
|
||||||
|
* Survey, on hold for now
|
||||||
|
|||||||
9849
CustomerNotes/Anthology/Workflows_js_nodes.json
Normal file
9849
CustomerNotes/Anthology/Workflows_js_nodes.json
Normal file
File diff suppressed because it is too large
Load Diff
26
CustomerNotes/Anthology/extract_domain_mapping.py
Normal file
26
CustomerNotes/Anthology/extract_domain_mapping.py
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
import csv
|
||||||
|
import re
|
||||||
|
|
||||||
|
listtuple = []
|
||||||
|
linelist = []
|
||||||
|
count = 0
|
||||||
|
with open('./Workflows_js_nodes.js', 'r') as file:
|
||||||
|
for num, line in enumerate(file, 1):
|
||||||
|
if "<<<" in line:
|
||||||
|
linelist.append(num)
|
||||||
|
if ">>>" in line:
|
||||||
|
linelist.append(num)
|
||||||
|
linelist = sorted(linelist)
|
||||||
|
x = len(linelist)
|
||||||
|
|
||||||
|
try:
|
||||||
|
while count in range(x):
|
||||||
|
count += 1
|
||||||
|
temp_tupe = (linelist[0], linelist[1])
|
||||||
|
listtuple.append(temp_tupe)
|
||||||
|
linelist.pop(0)
|
||||||
|
linelist.pop(1)
|
||||||
|
except IndexError as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
print(listtuple)
|
||||||
@ -203,3 +203,14 @@ Few items from Dirk:
|
|||||||
- Touch on Learning Paths Notification and Comms (Enrollment + Completion)
|
- Touch on Learning Paths Notification and Comms (Enrollment + Completion)
|
||||||
- Changing My Courses into Courses with a My & Available section
|
- Changing My Courses into Courses with a My & Available section
|
||||||
- Not sending Academy emails until later this week. Just announcing today.
|
- Not sending Academy emails until later this week. Just announcing today.
|
||||||
|
|
||||||
|
## 10/31/2023
|
||||||
|
|
||||||
|
### Communications with Gabriele
|
||||||
|
|
||||||
|
Stylize button for learning path notification & link
|
||||||
|
TODO: Test current button with {{school.url}}
|
||||||
|
Get UUIDs of Learning Paths for Gab
|
||||||
|
Use Hubspot workflows for Learning Path inactivity nudges
|
||||||
|
Ask about cloning NP courses into DataSnipper for DS implementation managers.
|
||||||
|
Told him about embedding support articles.
|
||||||
|
|||||||
Reference in New Issue
Block a user