39 lines
925 B
JavaScript
39 lines
925 B
JavaScript
const actionAuths = [
|
|
{
|
|
id: 'message-user',
|
|
pathId: 'msg-user',
|
|
deActions: ['select', 'remove', 'update'],
|
|
},
|
|
{
|
|
id: 'mobile-user',
|
|
pathId: 'mobile-user',
|
|
deActions: ['create', 'update', 'remove', 'select'],
|
|
},
|
|
{
|
|
id: 'token-user',
|
|
pathId: 'token-user',
|
|
deActions: ['create', 'update', 'remove', 'select'],
|
|
},
|
|
{
|
|
id: 'wechatLogin-user',
|
|
pathId: 'wchL-user',
|
|
deActions: ['create', 'update', 'select'],
|
|
},
|
|
{
|
|
id: 'wechatUser-user',
|
|
pathId: 'wchU-user',
|
|
deActions: ['create', 'update', 'select'],
|
|
},
|
|
{
|
|
id: 'passwordChangeTemp-user',
|
|
pathId: 'pwdCT-user',
|
|
deActions: ['create', 'select'],
|
|
},
|
|
{
|
|
id: 'userEntityClaim-user',
|
|
pathId: 'uec-user',
|
|
deActions: ['create', 'select'],
|
|
},
|
|
];
|
|
export default actionAuths;
|