Everything works except adding the new request back to the list; this proof of concept is a go, and will be merged to master
18 lines
322 B
JavaScript
18 lines
322 B
JavaScript
'use strict'
|
|
|
|
import Router from 'koa-router'
|
|
import db from '../db'
|
|
|
|
const router = new Router()
|
|
|
|
export default function (checkJwt) {
|
|
|
|
router.post('/', checkJwt, async (ctx, next) => {
|
|
ctx.body = await db.request.addNew(ctx.state.user.sub, ctx.request.body.requestText)
|
|
await next()
|
|
})
|
|
|
|
return router
|
|
}
|
|
|