adminjs-typeorm
adminjs-typeorm copied to clipboard
feat: add support for entity schema
Summary
This pull request introduces updates to add support for EntitySchema within the project.
These updates improve the flexibility and functionality of AdminJS integration, allowing for more comprehensive resource support.
Details
- Allow Resources to Use
EntitySchemaandBaseEntity - Update Example App: Refactored the example application to use the latest AdminJS version and ES modules
- Update the tests to cover the new functionality
- Demonstrate
EntitySchemaUsage in the example app
Usage
Entity schemas can be utilized by passing them as an object that includes the schema and the DataSource already initialized.
new AdminJS({
resources: [
{
schema: SomeSchema,
dataSource,
},
],
});