summaryrefslogtreecommitdiff
path: root/server/src/register.ts
blob: 55f60c9fcb42c8555f14d7f399e243b1025ead64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import type { Core } from '@strapi/strapi';

const register = ({ strapi }: { strapi: Core.Strapi }) => {
  // register phase
  strapi.customFields.register({
    name: 'checkbox-list',
    plugin: 'checkbox-list',
    type: 'json',
    inputSize: {
      default: 6,
      isResizable: true,
    },
  });
};

export default register;