UNPKG

strapi-plugin-jodit-editor

Version:

A powerful rich text editor plugin for Strapi v5 using the Jodit Editor with advanced formatting capabilities and seamless integration with Strapi's media library.

14 lines (11 loc) 318 B
import type { Core } from '@strapi/strapi'; const controller = ({ strapi }: { strapi: Core.Strapi }) => ({ index(ctx) { ctx.body = strapi .plugin('jodit-editor') // the name of the service file & the method. .service('service') .getWelcomeMessage(); }, }); export default controller;