budibase/packages/server/middleware/controllers/auth.js

18 lines
240 B
JavaScript
Raw Normal View History

2020-04-07 21:34:21 +02:00
const couchdb = require("../../db");
const controller = {
forgotPassword: async ctx => {
},
setPassword: async ctx => {
},
changePassword: async ctx => {
},
authenticate: async ctx => {
}
}
module.exports = controller;