mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-04-14 19:56:23 +00:00
fix lint
This commit is contained in:
parent
a2ce0ab099
commit
5d1346e65c
1 changed files with 2 additions and 2 deletions
|
|
@ -12,9 +12,9 @@ const webhookData = {};
|
|||
|
||||
app.use(bodyParser.urlencoded({
|
||||
extended: true,
|
||||
limit: '10mb'
|
||||
limit: '10mb',
|
||||
}));
|
||||
app.use(bodyParser.json({limit: '10mb'}));
|
||||
app.use(bodyParser.json({ limit: '10mb' }));
|
||||
|
||||
app.post('/webhooks/:id', (req, res) => {
|
||||
const { id } = req.params;
|
||||
|
|
|
|||
Loading…
Reference in a new issue