strapi-plugin-import-export-entries
Version:
Import/Export data from and to your database in just few clicks.
17 lines (16 loc) • 373 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const pluginId = require('./pluginId');
/**
* @typedef {("serverPublicHostname")} ConfigParam
*/
/**
* Get a config parameter.
* @param {ConfigParam} param
*/
const getConfig = (param) => {
return strapi.config.get(`plugin.${pluginId}.${param}`);
};
module.exports = {
getConfig,
};