UNPKG

strapi-content-type-explorer

Version:

A Strapi plugin to view your content types and their relationships

12 lines (9 loc) 249 B
"use strict"; module.exports = ({ strapi }) => ({ async getTypes(ctx) { const contentTypes = await strapi .service("plugin::strapi-content-type-explorer.explorerService") .getContentTypes(); ctx.body = contentTypes; }, });