Files
speckle-server/packages/frontend-2/server/middleware/002-setIdHeaderResponse.ts
T
Kristaps Fabians Geikins 83d8035dc2 chore: upgrade to eslint 9 (#2348)
* root + server

* frontend

* frontend-2

* dui3

* dui3

* tailwind theme

* ui-components

* preview service

* viewer

* viewer-sandbox

* fileimport-service

* webhook service

* objectloader

* shared

* ui-components-nuxt

* WIP full config

* WIP full linter

* eslint projectwide util

* minor fix

* removing redundant ci

* clean up test errors

* fixed prettier formatting

* CI improvements

* TSC lint fix

* 'buildBatch' needs to be async since some batch types (like Text) require it. Removed a disabled liniting rule from ObjLoader

* removed unnecessary void

---------

Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
2024-06-12 14:38:02 +03:00

16 lines
534 B
TypeScript

import { defineEventHandler, fromNodeMiddleware } from 'h3'
import type { IncomingMessage, ServerResponse } from 'http'
import { REQUEST_ID_HEADER } from '~~/server/lib/core/helpers/constants'
export const getRequestIdMiddleware = (
req: IncomingMessage,
res: ServerResponse,
next: () => void
) => {
// we are the ones who are pushing the req.id there, so we know its a string
res.setHeader(REQUEST_ID_HEADER, `${req.id as string}`)
next()
}
export default defineEventHandler(fromNodeMiddleware(getRequestIdMiddleware))