wikipedia-game-solver/apps/api/app/middleware/force_json_response_middleware.ts

15 lines
543 B
TypeScript
Raw Normal View History

2024-08-09 23:51:41 +02:00
import type { HttpContext } from "@adonisjs/core/http"
import type { NextFn } from "@adonisjs/core/types/http"
/**
* Updating the "Accept" header to always accept "application/json" response from the server. This will force the internals of the framework like validator errors or auth errors to return a JSON response.
*/
export default class ForceJsonResponseMiddleware {
2024-08-16 02:50:11 +02:00
public async handle({ request }: HttpContext, next: NextFn) {
2024-08-09 23:51:41 +02:00
const headers = request.headers()
headers.accept = "application/json"
return next()
}
}