-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
V0 #1
Conversation
app/routers/student_quiz_reports.py
Outdated
def create_student_quiz_report(report_data: CreateStudentQuizReportModel): | ||
return self.__student_quiz_reports_controller.create_student_quiz_report(report_data) | ||
|
||
@api_router.get('/get/{student_quiz_report_uid}') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
student_quiz_report_uid
not used
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh was playing with the URL params. Will update this, thanks!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
looks good
V0 of the reporting engine. Includes:
student_quiz_reports
tableStack is FastAPI + DynamoDB
I have kept all interactions with the DB in a separate layer so that if we switch away from DynamoDB life will be simple.
The APIs are made to be used by the reports. FastAPI will be our default frontend, but we can build others with the API