@bared/plugin-email
v0.0.51
Published
Email plugin for bared CMS
Downloads
10
Readme
Plugin System for Bared CMS
A plugin should define following exports
// optional, if a plugin wants to add extra columns/attributes to user data type
extendUserAttributes: (userAttributes) => { return extendedAttrbutes },
// data types defined by this plugin
schemas: [
{ tableName: 'email_provider', displayName: 'Email Provider', attributes: [] },
{ tableName: 'email_template', ... }
],
// routes defined by this plugin, same as general routes
routes: [],
// services will be added to global bared.services object
services: []