strapi-supergpt
Version:
A plugin that gives you the ability to integrate ChatGPT into strapi
19 lines (17 loc) • 395 B
JavaScript
;
module.exports = ({ strapi }) => ({
async updateConfig(ctx) {
const data = await strapi
.plugin("strapi-supergpt")
.service("cacheService")
.updateConfig(ctx);
ctx.send(data);
},
async getConfig(ctx) {
const data = await strapi
.plugin("strapi-supergpt")
.service("cacheService")
.getConfig(ctx);
ctx.send(data);
},
});