UNPKG

strapi-plugin-parent-child-relationships

Version:

Strapi plugin to create and manage parent-child relationships between content types using custom fields

17 lines (14 loc) 289 B
"use strict"; const plugin = require("../admin/src/pluginId"); module.exports = ({ strapi }) => { strapi.customFields.register({ name: "relation", plugin, type: "json", }); strapi.customFields.register({ name: "dynamic-root", plugin, type: "json", }); };