Merge remote-tracking branch 'origin/feat/question-routes' into feat/question-routes

# Conflicts:
#	backend/src/data/questions/answer-repository.ts
#	backend/src/data/questions/question-repository.ts
#	backend/src/routes/answers.ts
#	backend/src/services/answers.ts
This commit is contained in:
Gabriellvl 2025-04-07 11:55:34 +02:00
commit 7f7a4fe936
7 changed files with 38 additions and 53 deletions

View file

@ -1,10 +1,5 @@
import express from 'express';
import {
createQuestionHandler,
deleteQuestionHandler,
getAllQuestionsHandler,
getQuestionHandler,
} from '../controllers/questions.js';
import { createQuestionHandler, deleteQuestionHandler, getAllQuestionsHandler, getQuestionHandler } from '../controllers/questions.js';
import answerRoutes from './answers.js';
const router = express.Router({ mergeParams: true });