1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00
budibase/packages/server/src/api/controllers/screen.js

37 lines
825 B
JavaScript
Raw Normal View History

/**
* This controller is not currently fully implemented. Screens are
* currently managed as part of the pages API, please look in api/routes/page.js
* for routes and controllers.
*/
2020-11-02 04:32:54 +13:00
const CouchDB = require("../../db")
exports.fetch = async ctx => {
ctx.throw(501)
}
2020-11-02 04:32:54 +13:00
exports.create = async ctx => {
const db = new CouchDB(ctx.user.appId)
const screen = {
// name: ctx.request.body.name,
// _rev: ctx.request.body._rev,
// permissions: ctx.request.body.permissions || [],
// _id: generateAccessLevelID(),
// type: "accesslevel",
}
const response = await db.put(screen)
ctx.body = {
...screen,
...response,
}
ctx.message = `Screen '${screen.name}' created successfully.`
}
exports.save = async ctx => {
ctx.throw(501)
}
exports.destroy = async ctx => {
ctx.throw(501)
}