tachybase_todo/packages/plugin-ui-schema-storage/src/server-hooks/hooks/remove-schema.ts
ChengLei Shao 000587380b
fix: postgres sort with appends issue (#198)
* fix: postgres sort with appends issue

* fix: role menus api error

* feat: add exists params in roles.collections api

* refactor: remove uid field on uiSchemas table

* test: toggle role menus

* fix: plugin-acl test

* feat: sync data to acl before app start

* fix: mysql ui-schema sql compatibility

* feat: writeRolesToACL in plugin-acl
2022-02-20 01:23:04 +08:00

20 lines
567 B
TypeScript

import { UiSchemaRepository } from '../../repository';
export async function removeSchema({ schemaInstance, options, db, params }) {
const { transaction } = options;
const uiSchemaRepository: UiSchemaRepository = db.getRepository('uiSchemas');
const uid = schemaInstance.get('x-uid') as string;
if (params?.removeParentsIfNoChildren) {
await uiSchemaRepository.removeEmptyParents({
uid,
breakRemoveOn: params['breakRemoveOn'],
transaction,
});
} else {
await uiSchemaRepository.remove(uid, {
transaction,
});
}
}