mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 02:15:11 +00:00
f9c4fb9df0
* feat: add hasMany field for action logs * fix: add scope to log field * test: add cases * test: remove console.log * test: add expects * refactor: use constants for hook types * fix: missing pageInfo Co-authored-by: chenos <chenlinxh@gmail.com>
4 lines
125 B
TypeScript
4 lines
125 B
TypeScript
export const LOG_TYPE_CREATE = 'create';
|
|
export const LOG_TYPE_UPDATE = 'update';
|
|
export const LOG_TYPE_DESTROY = 'destroy';
|