18 lines
506 B
JavaScript
18 lines
506 B
JavaScript
'use strict';
|
|
|
|
const PERMISSIONS = {
|
|
// This permission regards the main component (App) and is used to tell
|
|
// If the plugin link should be displayed in the menu
|
|
// And also if the plugin is accessible. This use case is found when a user types the url of the
|
|
// plugin directly in the browser
|
|
settings: [
|
|
{
|
|
action: 'plugin::email.settings.read',
|
|
subject: null
|
|
}
|
|
]
|
|
};
|
|
|
|
exports.PERMISSIONS = PERMISSIONS;
|
|
//# sourceMappingURL=constants.js.map
|