芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/strapi-admin/config/admin-conditions.js
'use strict'; module.exports = { conditions: [ { displayName: 'Is creator', name: 'is-creator', plugin: 'admin', handler: user => ({ 'created_by.id': user.id }), }, { displayName: 'Has same role as creator', name: 'has-same-role-as-creator', plugin: 'admin', handler: user => ({ 'created_by.roles': { $elemMatch: { id: { $in: user.roles.map(r => r.id), }, }, }, }), }, ], };