1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00
budibase/packages/server/middleware/controllers/auth.js
2020-04-15 15:24:24 +01:00

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;