summaryrefslogtreecommitdiff
path: root/server/src/controllers/controller.js
blob: dbd8811a5117178e6667136534960ced875be0fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const controller = ({ strapi }) => ({
    index(ctx) {
        ctx.body = strapi
            .plugin('strapi-plugin-checkbox-list')
            // the name of the service file & the method.
            .service('service')
            .getWelcomeMessage();
    },
});
exports.default = controller;