jiraCloud/app.js
jmcqueen efc64a227c Add Webex inbound OAuth flow and room-to-Jira job request pipeline.
Introduces integration-based webhook registration, message parsing, dry-run
monitoring, JSM ticket creation, and OAuth token refresh for DC Ops spaces.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-28 08:27:52 -04:00

13 lines
287 B
JavaScript

import express from 'express';
import bodyParser from 'body-parser';
export function createApp() {
const app = express();
app.use(bodyParser.json({
limit: '200mb',
verify: (req, res, buf) => {
req.rawBody = buf;
},
}));
return app;
}