34 lines
1.1 KiB
Python
34 lines
1.1 KiB
Python
from typing import Annotated
|
|
from fastapi import APIRouter, Depends
|
|
from typing import List
|
|
|
|
from enums import TypeMood, TypeModel
|
|
from repository import QuestionRepository
|
|
from schemas import SQuestionAdd, SQuestion, SQuestionId
|
|
|
|
router = APIRouter(
|
|
prefix="/questions",
|
|
tags=["Questions"],
|
|
)
|
|
|
|
@router.post("")
|
|
async def add_question(
|
|
question: Annotated[SQuestionAdd, Depends()],
|
|
type_mood: TypeMood, # Добавлен параметр type_mood
|
|
type_model: TypeModel, # Добавлен параметр type_model
|
|
) -> SQuestionId:
|
|
question_id = await QuestionRepository.add_one(question, type_mood, type_model) # Передача параметров type_mood и type_model
|
|
return {"ok": True, "question_id": question_id}
|
|
|
|
@router.get("")
|
|
async def get_questions() -> list[SQuestion]:
|
|
questions = await QuestionRepository.find_all()
|
|
return questions
|
|
|
|
|
|
@router.get("/{email_user}")
|
|
async def get_questions_by_email(email_user: str) -> list[SQuestion]:
|
|
questions = await QuestionRepository.find_by_email(email_user)
|
|
return questions
|
|
|