@appricot/strapi-plugin-tinymce
Version:
Replaces the default Strapi WYSIWYG editor with a customized build of TinyMCE editor.
24 lines (23 loc) • 526 B
JavaScript
module.exports = {
type: "admin",
routes: [
{
method: "GET",
path: "/settings",
handler: "settings.getSettings",
config: {
policies: [],
auth: false,
},
},
{
method: "POST",
path: "/settings",
handler: "settings.setSettings",
config: {
policies: [],
auth: false,
},
},
],
};