2020-10-13 18:40:28 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
exports.fetch = async ctx => {
|
|
|
|
ctx.throw(501)
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.save = async ctx => {
|
|
|
|
ctx.throw(501)
|
|
|
|
}
|
|
|
|
|
|
|
|
exports.destroy = async ctx => {
|
|
|
|
ctx.throw(501)
|
|
|
|
}
|