Handle invalid endpoints

This commit is contained in:
Yarmo Mackenbach 2021-04-15 14:49:25 +02:00
parent c13c65aa5e
commit c333229e5d
No known key found for this signature in database
GPG key ID: 37367F4AF4087AD1

View file

@ -14,6 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License. limitations under the License.
*/ */
const router = require('express').Router() const router = require('express').Router()
const { body, validationResult } = require('express-validator')
const fetcher = require('../../../fetcher') const fetcher = require('../../../fetcher')
const E = require('../../../enums') const E = require('../../../enums')
require('dotenv').config() require('dotenv').config()
@ -40,11 +41,7 @@ const opts = {
// Root route // Root route
router.get('/', async (req, res) => { router.get('/', async (req, res) => {
return res.status(400).json({ return res.status(400).json({ error: 'Invalid endpoint' })
data: [],
error:
'Available endpoints: /json/:url, /text/:url, /dns/:hostname, /xmpp/:xmppid, /twitter/:tweetid, /matrix/:roomid/:eventid, /irc/:ircserver/:ircnick',
})
}) })
// HTTP route // HTTP route