mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 10:06:19 +00:00
29 lines
558 B
JavaScript
29 lines
558 B
JavaScript
|
/*\
|
||
|
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 = decodeURIComponent(state.params[0]);
|
||
|
state.wiki.deleteTiddler(title);
|
||
|
response.writeHead(204, "OK", {
|
||
|
"Content-Type": "text/plain"
|
||
|
});
|
||
|
response.end();
|
||
|
};
|
||
|
|
||
|
}());
|