mirror of
https://github.com/status-im/codimd.git
synced 2025-01-13 19:24:17 +00:00
14 lines
231 B
JavaScript
14 lines
231 B
JavaScript
'use strict'
|
|
|
|
const toobusy = require('toobusy-js')
|
|
|
|
const response = require('../../response')
|
|
|
|
module.exports = function (req, res, next) {
|
|
if (toobusy()) {
|
|
response.errorServiceUnavailable(res)
|
|
} else {
|
|
next()
|
|
}
|
|
}
|