feat: adding docuemntation
This commit is contained in:
parent
155e74678f
commit
9c1793088a
|
@ -17,8 +17,10 @@ def user_history(
|
||||||
@history_blueprint.route("/detail/<answer_id>", methods=["GET"])
|
@history_blueprint.route("/detail/<answer_id>", methods=["GET"])
|
||||||
@inject
|
@inject
|
||||||
def user_detail_history(
|
def user_detail_history(
|
||||||
answer_id, controller: HistoryController = Provide[Container.history_controller]
|
answer_id: str,
|
||||||
|
controller: HistoryController = Provide[Container.history_controller],
|
||||||
):
|
):
|
||||||
|
print(answer_id)
|
||||||
return controller.get_detail_quiz_history(answer_id)
|
return controller.get_detail_quiz_history(answer_id)
|
||||||
|
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue