mirror of
https://gitee.com/nocobase/nocobase.git
synced 2025-05-08 06:59:26 +08:00
* feat: 部分代码 * feat: auditmanager * feat: remove plugin and update Audit test case * fix: build error * feat: update audit value * fix: some action like create remove can not work correctly * fix: metadata data * feat: update some dataSource * fix: filterKeys error * style: update code format * feat: add getMetaData test & add audit log in specific module * fix: bug * refactor: registerAction and getAction * refactor: registerAction and getAction * fix: log * fix: fix middleware * chore: add getResourceUk * chore: use response code as status * chore: log error * chore: get role from response header * chore: auth signIn getUserInfo * chore: add X-Forwarded-For * chore: adjust IP acquisition and add log user updateprofile * fix: getAction bug * fix: get ip from header * chore: register uiSchemas actions * chore: register uiSchemas:insertAdjacent * chore: record source and target * chore: record auth:changePassword * chore: add getSourceAndTarget * chore: auditManager tests * fix: delete submodule * chore: delete debug port * fix: module not found * chore: save path and swap the values of source and target --------- Co-authored-by: yujian.sun <yujian.sun@dmall.com> Co-authored-by: sunyujian <565974029@qq.com> Co-authored-by: xilesun <2013xile@gmail.com>
31 lines
934 B
TypeScript
31 lines
934 B
TypeScript
/**
|
|
* This file is part of the NocoBase (R) project.
|
|
* Copyright (c) 2020-2024 NocoBase Co., Ltd.
|
|
* Authors: NocoBase Team.
|
|
*
|
|
* This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
|
|
* For more information, please refer to: https://www.nocobase.com/agreement.
|
|
*/
|
|
|
|
export * from './app-supervisor';
|
|
export * from './application';
|
|
export { Application as default } from './application';
|
|
export * from './gateway';
|
|
export * as middlewares from './middlewares';
|
|
export * from './migration';
|
|
export * from './plugin';
|
|
export * from './plugin-manager';
|
|
export * from './audit-manager';
|
|
export * from './pub-sub-manager';
|
|
export const OFFICIAL_PLUGIN_PREFIX = '@nocobase/plugin-';
|
|
|
|
export {
|
|
appendToBuiltInPlugins,
|
|
findAllPlugins,
|
|
findBuiltInPlugins,
|
|
findLocalPlugins,
|
|
packageNameTrim,
|
|
} from './plugin-manager/findPackageNames';
|
|
|
|
export { runPluginStaticImports } from './run-plugin-static-imports';
|