* 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
20 lines
567 B
TypeScript
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,
|
|
});
|
|
}
|
|
}
|