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

18 lines
240 B
JavaScript

const couchdb = require("../../db");
const controller = {
forgotPassword: async ctx => {
},
setPassword: async ctx => {
},
changePassword: async ctx => {
},
authenticate: async ctx => {
}
}
module.exports = controller;