2026-02-05 10:19:56 +00:00
|
|
|
import type { Core } from '@strapi/strapi';
|
|
|
|
|
|
|
|
|
|
const register = ({ strapi }: { strapi: Core.Strapi }) => {
|
|
|
|
|
// register phase
|
2026-02-05 11:53:17 +00:00
|
|
|
strapi.customFields.register({
|
|
|
|
|
name: 'checkbox-list',
|
|
|
|
|
plugin: 'checkbox-list',
|
|
|
|
|
type: 'json',
|
|
|
|
|
});
|
2026-02-05 10:19:56 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default register;
|