merge
This commit is contained in:
parent
2edb559fcf
commit
212a1217c5
|
@ -15,13 +15,13 @@ let POUCH_DB_DEFAULTS = {
|
||||||
skip_setup: env.isProd(),
|
skip_setup: env.isProd(),
|
||||||
}
|
}
|
||||||
|
|
||||||
if (env.isTest()) {
|
// if (env.isTest()) {
|
||||||
PouchDB.plugin(require("pouchdb-adapter-memory"))
|
// PouchDB.plugin(require("pouchdb-adapter-memory"))
|
||||||
POUCH_DB_DEFAULTS = {
|
// POUCH_DB_DEFAULTS = {
|
||||||
prefix: undefined,
|
// prefix: undefined,
|
||||||
adapter: "memory",
|
// adapter: "memory",
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
|
|
||||||
const Pouch = PouchDB.defaults(POUCH_DB_DEFAULTS)
|
const Pouch = PouchDB.defaults(POUCH_DB_DEFAULTS)
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ exports.authenticate = async (ctx, next) => {
|
||||||
|
|
||||||
exports.logout = async ctx => {
|
exports.logout = async ctx => {
|
||||||
clearCookie(ctx, Cookies.Auth)
|
clearCookie(ctx, Cookies.Auth)
|
||||||
ctx.body = { messaged: "User logged out" }
|
ctx.body = { message: "User logged out" }
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.googleAuth = async () => {
|
exports.googleAuth = async () => {
|
||||||
|
|
Loading…
Reference in New Issue