@oberoncms/core
Version:
OberonCMS is a cloud deployable CMS written in typescript based on the Puck visual editor
31 lines (30 loc) • 1.1 kB
JavaScript
import { notImplemented } from "../adapter.js";
const stubbedAdapter = {
prebuild: async () => {
},
getCurrentUser: notImplemented("getCurrentUser"),
hasPermission: notImplemented("hasPermission"),
signIn: notImplemented("signIn"),
signOut: notImplemented("signOut"),
sendVerificationRequest: notImplemented("sendVerificationRequest"),
addImage: notImplemented("addImage"),
addPage: notImplemented("addPage"),
addUser: notImplemented("addUser"),
changeRole: notImplemented("changeRole"),
deleteImage: notImplemented("deleteImage"),
deletePage: notImplemented("deletePage"),
deleteKV: notImplemented("deleteKV"),
deleteUser: notImplemented("deleteUser"),
getAllImages: notImplemented("getAllImages"),
getAllPages: notImplemented("getAllPages"),
getAllUsers: notImplemented("getAllUsers"),
getPageData: notImplemented("getPageData"),
getKV: notImplemented("getKV"),
getSite: notImplemented("getSite"),
putKV: notImplemented("putKV"),
updatePageData: notImplemented("updatePageData"),
updateSite: notImplemented("updateSite")
};
export {
stubbedAdapter
};