Looking to use Foundry to build a Learning Management System.
It would be easy to use Workshop to show the PowerPoint or content, Workshop for custom data displays, Automate for Scheduling, Action Types for recording data back to object.
Only thing I’m really missing is the ability to create a “Quiz” indicating a “correct answer” on a form and score it without frankensteining it.
My best bad guess at a first few steps (which might fall into your category of “frankensteining it”) is: Create 5 Object types
Quiz
(Primary key) Quiz id
Quiz title
Quiz question
(Primary key) Question id
(Foreign key) quiz id
Question text
Correct answer
Quiz response
(Primary key) response id
(Foreign key) quiz id
(Foreign key) question id
(Foreign key) user id
Submitted answer
(Boolean) is correct
Quiz result
(Primary key) result id
(Foreign key) quiz id
(Foreign key) user id
Total questions
Correct answers
Quiz user
(Primary key)
First name
Last name use AIP logic to compare quizQuesetion.correctAnswer with quizResponse.submittedAnswer that updates quizResponse.isCorrect Or are you thinking there should be like a widget to accomplish this?
Also in the workshop examples there is one called “customizable questionnaire in workshop” which might be useful.