UNPKG

@appricot/strapi-plugin-tinymce

Version:

Replaces the default Strapi WYSIWYG editor with a customized build of TinyMCE editor.

13 lines (11 loc) 289 B
"use strict"; module.exports = { getConfig: async (ctx) => { const { configKey } = ctx.params; const config = await strapi .plugin("tinymce") .service("config") .getConfig(configKey); ctx.send(config); }, };