Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
fix(server): remove auth endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
Metnew committed Feb 18, 2018
1 parent 8cbd0f4 commit 9a35cbe
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/server/api/index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
import {Router} from 'express'
import auth from './auth'
import links from './links.json'
import links from './links'
const router = Router()

router.use('/auth', auth)
router.get('/links', (req, res) => {
res.send(links)
})
router.get('/links', (req, res) => res.send(links))

export default router

0 comments on commit 9a35cbe

Please sign in to comment.