Fixing issues discovered by cypress tests.
This commit is contained in:
parent
7039b8d7eb
commit
f4757aeee1
|
@ -50,10 +50,9 @@ module.exports = (noAuthPatterns = [], opts) => {
|
|||
if (authCookie) {
|
||||
try {
|
||||
const db = database.getDB(StaticDatabases.GLOBAL.name)
|
||||
const foundUser = await db.get(authCookie.userId)
|
||||
delete foundUser.password
|
||||
user = await db.get(authCookie.userId)
|
||||
delete user.password
|
||||
authenticated = true
|
||||
user = foundUser
|
||||
} catch (err) {
|
||||
// remove the cookie as the use does not exist anymore
|
||||
clearCookie(ctx, Cookies.Auth)
|
||||
|
|
|
@ -14,7 +14,7 @@ async function redirect(ctx, method) {
|
|||
request(ctx, {
|
||||
method,
|
||||
body: ctx.request.body,
|
||||
})
|
||||
}, true)
|
||||
)
|
||||
if (response.status !== 200) {
|
||||
ctx.throw(response.status, response.statusText)
|
||||
|
|
|
@ -102,9 +102,14 @@ exports.publicSettings = async function (ctx) {
|
|||
const db = new CouchDB(GLOBAL_DB)
|
||||
try {
|
||||
// Find the config with the most granular scope based on context
|
||||
ctx.body = await getScopedFullConfig(db, {
|
||||
const config = await getScopedFullConfig(db, {
|
||||
type: Configs.SETTINGS,
|
||||
})
|
||||
if (!config) {
|
||||
ctx.body = {}
|
||||
} else {
|
||||
ctx.body = config
|
||||
}
|
||||
} catch (err) {
|
||||
ctx.throw(err.status, err)
|
||||
}
|
||||
|
|
|
@ -130,6 +130,9 @@ exports.removeAppRole = async ctx => {
|
|||
}
|
||||
|
||||
exports.getSelf = async ctx => {
|
||||
if (!ctx.user) {
|
||||
ctx.throw(403, "User not logged in")
|
||||
}
|
||||
ctx.params = {
|
||||
id: ctx.user._id,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue