Fix variable name in returned message when deleting a role

This commit is contained in:
Andrew Kingston 2020-12-04 08:28:35 +00:00
parent d9df2a60eb
commit 8feea17521
1 changed files with 1 additions and 1 deletions

View File

@ -50,6 +50,6 @@ exports.save = async function(ctx) {
exports.destroy = async function(ctx) { exports.destroy = async function(ctx) {
const db = new CouchDB(ctx.user.appId) const db = new CouchDB(ctx.user.appId)
await db.remove(ctx.params.roleId, ctx.params.rev) await db.remove(ctx.params.roleId, ctx.params.rev)
ctx.message = `Role ${ctx.params.id} deleted successfully` ctx.message = `Role ${ctx.params.roleId} deleted successfully`
ctx.status = 200 ctx.status = 200
} }