strapi-plugin-rest-cache
Version:
Speed-up HTTP requests with LRU cache
20 lines (17 loc) • 403 B
JavaScript
// import pluginId from './pluginId';
const pluginPermissions = {
purge: [{ action: `plugin::rest-cache.cache.purge`, subject: null }],
readStrategy: [
{
action: `plugin::rest-cache.cache.read-strategy`,
subject: null,
},
],
readProvider: [
{
action: `plugin::rest-cache.cache.read-provider`,
subject: null,
},
],
};
export default pluginPermissions;