initial implementation of serverside password change RPCs

This commit is contained in:
ansuz
2018-06-19 11:31:15 +02:00
parent 2463dd0c9e
commit 9d3d8c3ba2
3 changed files with 179 additions and 0 deletions

View File

@@ -126,6 +126,9 @@ app.use("/blob", Express.static(Path.join(__dirname, (config.blobPath || './blob
app.use("/datastore", Express.static(Path.join(__dirname, (config.filePath || './datastore')), {
maxAge: "0d"
}));
app.use("/block", Express.static(Path.join(__dirname, (config.blockPath || '/block')), {
maxAge: "0d",
}));
app.use("/customize", Express.static(__dirname + '/customize'));
app.use("/customize", Express.static(__dirname + '/customize.dist'));