You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
230 B

5 years ago
  1. const express = require('express')
  2. const router = express.Router()
  3. // Get a token.
  4. router.get('/api-token-auth', (req, res) => {
  5. res.json({
  6. token: '9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b'
  7. })
  8. })
  9. module.exports = router