API changes to accommodate 3rd party clients

This commit is contained in:
ehuggett 2017-12-21 15:54:19 +00:00
parent 0f8c3caf18
commit ff9a107a29
2 changed files with 7 additions and 2 deletions

View file

@ -11,8 +11,11 @@ module.exports = async (req, res) => {
}
try {
await storage.exists(id);
res.sendStatus(200);
const meta = await storage.metadata(id);
res.set('WWW-Authenticate', `send-v1 ${meta.nonce}`);
res.send({
password: meta.pwd
});
} catch (e) {
res.sendStatus(404);
}