aboutsummaryrefslogtreecommitdiff
path: root/server/src/register.js
blob: 205846ac2d7f052dfc8d04e2d2bc7cdc7c6cd892 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const register = ({ strapi }) => {
    // register phase
    strapi.customFields.register({
        name: 'checkbox-list',
        plugin: 'checkbox-list',
        type: 'json',
    });
};
exports.default = register;