@churchapps/apihelper
Version:
Library of helper functions not specific to any one ChurchApps project or framework.
15 lines • 406 B
text/typescript
export class BasePermissions {
static forms = {
admin: { contentType: "Forms", action: "Admin" },
edit: { contentType: "Forms", action: "Edit" }
};
static links = {
edit: { contentType: "Links", action: "Edit" }
};
static pages = {
edit: { contentType: "Pages", action: "Edit" }
};
static settings = {
edit: { contentType: "Settings", action: "Edit" }
};
}