mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 17:56:30 -05:00
18 lines
612 B
JavaScript
18 lines
612 B
JavaScript
'use strict'
|
|
|
|
const Router = require('express').Router
|
|
|
|
const {urlencodedParser} = require('./utils')
|
|
const history = require('../history')
|
|
const historyRouter = module.exports = Router()
|
|
|
|
// get history
|
|
historyRouter.get('/history', history.historyGet)
|
|
// post history
|
|
historyRouter.post('/history', urlencodedParser, history.historyPost)
|
|
// post history by note id
|
|
historyRouter.post('/history/:noteId', urlencodedParser, history.historyPost)
|
|
// delete history
|
|
historyRouter.delete('/history', history.historyDelete)
|
|
// delete history by note id
|
|
historyRouter.delete('/history/:noteId', history.historyDelete)
|