mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
6e5e6696ad
Known bugs/features: - pushing towards an existing note results in an error 500 Signed-off-by: Erik Michelson <erik@liltv.de>
30 lines
1,017 B
JavaScript
30 lines
1,017 B
JavaScript
'use strict'
|
|
|
|
const Router = require('express').Router
|
|
|
|
const response = require('../response')
|
|
|
|
const { markdownParser } = require('./utils')
|
|
|
|
const noteRouter = module.exports = Router()
|
|
|
|
// get new note
|
|
noteRouter.get('/new', response.postNote)
|
|
// post new note with content
|
|
noteRouter.post('/new', markdownParser, response.postNote)
|
|
// post new note with content and alias
|
|
noteRouter.post('/new/:noteId', markdownParser, response.postNote)
|
|
// get publish note
|
|
noteRouter.get('/s/:shortid', response.showPublishNote)
|
|
// publish note actions
|
|
noteRouter.get('/s/:shortid/:action', response.publishNoteActions)
|
|
// get publish slide
|
|
noteRouter.get('/p/:shortid', response.showPublishSlide)
|
|
// publish slide actions
|
|
noteRouter.get('/p/:shortid/:action', response.publishSlideActions)
|
|
// get note by id
|
|
noteRouter.get('/:noteId', response.showNote)
|
|
// note actions
|
|
noteRouter.get('/:noteId/:action', response.noteActions)
|
|
// note actions with action id
|
|
noteRouter.get('/:noteId/:action/:actionId', response.noteActions)
|