MCPcopy Create free account
hub / github.com/firebase/firebase-tools / httpsHandler

Method httpsHandler

src/emulator/functionsEmulator.ts:342–348  ·  view source on GitHub ↗
(req, res)

Source from the content-addressed store, hash-verified

340 const listBackendsRoute = `/backends`;
341
342 const httpsHandler: express.RequestHandler = (req, res) => {
343 const work: Work = () => {
344 return this.handleHttpsTrigger(req, res);
345 };
346 work.type = `${req.path}-${new Date().toISOString()}`;
347 this.workQueue.submit(work);
348 };
349
350 const multicastHandler: express.RequestHandler = (req: express.Request, res) => {
351 const projectId = req.params.project_id;

Callers

nothing calls this directly

Calls 1

submitMethod · 0.80

Tested by

no test coverage detected