30 lines
608 B
JavaScript
30 lines
608 B
JavaScript
const couchdb = require("../../db");
|
|
|
|
const controller = {
|
|
forgotPassword: async ctx => {
|
|
|
|
},
|
|
setPassword: async ctx => {
|
|
|
|
},
|
|
changePassword: async ctx => {
|
|
|
|
},
|
|
authenticate: async ctx => {
|
|
// const user = await ctx.master.authenticate(
|
|
// ctx.sessionId,
|
|
// ctx.params.appname,
|
|
// ctx.request.body.username,
|
|
// ctx.request.body.password
|
|
// )
|
|
|
|
// if (!user) {
|
|
// ctx.throw(StatusCodes.UNAUTHORIZED, "invalid username or password")
|
|
// }
|
|
|
|
// ctx.body = user.user_json
|
|
// ctx.response.status = StatusCodes.OK
|
|
}
|
|
}
|
|
|
|
module.exports = controller; |