/*\ title: $:/core/modules/server/routes/delete-tiddler.js type: application/javascript module-type: route DELETE /recipes/default/tiddlers/:title \*/ (function() { /*jslint node: true, browser: true */ /*global $tw: false */ "use strict"; exports.method = "DELETE"; exports.path = /^\/bags\/default\/tiddlers\/(.+)$/; exports.handler = function(request,response,state) { var title = $tw.utils.decodeURIComponentSafe(state.params[0]); state.wiki.deleteTiddler(title); response.writeHead(204, "OK", { "Content-Type": "text/plain" }); response.end(); }; }());