From dd5c8c3e10851d3b8c5d7764c90035e1d976a958 Mon Sep 17 00:00:00 2001 From: Minteck Date: Sat, 4 Jun 2022 09:13:03 +0200 Subject: Immutable --- modules/write.js | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'modules/write.js') diff --git a/modules/write.js b/modules/write.js index d733360..48ab1d6 100644 --- a/modules/write.js +++ b/modules/write.js @@ -6,6 +6,13 @@ module.exports = (req, res, entry, dbid) => { res.writeHead(200, {'Content-Type':'application/json'}); body(req, res, variables.bodyOptions, (err, body) => { try { + if (databases[entry]["immutable"]) { + res.writeHead(501, {'Content-Type':'application/json'}); + res.write("{\"error\":501}"); + res.end(); + return; + } + if (err) throw err; console.log(body); if (typeof body.path === "string" && typeof body.data === "string") { -- cgit