Rafał Dzięgielewski
Rafał Dzięgielewski
We plan to release version 7 in 1-2 weeks and it's going to be ESM-only.
@WeeJeWel While adding another argument to `authenticate` function would solve your particular use case, it isn't the best solution because we might want to add extra parameters later. Currently there...
Please update NodeJS to LTS (v18)
You're missing `user` mapping in `propertiesMapping` Here's an example of `featureOptions` that we used in one of our projects. ``` { propertiesMapping: { user: 'userId', action: 'actionName', resource: 'resourceId', },...
Can you share your entity's schema and what's the ORM/ODM/AdminJS adapter you're using?
I was asking about `User Banks` entity, I want to figure out why it uses email in your id column.
This should be resolved now since GET requests don't trigger mutating behaviours anymore.
The docs also state that the library supports only ESM projects. Importing `adminjs` in a CJS project will result in an error.
You must explicitly define a `@Column` for your foreign key, for example (`customerId`): ```typescript @ManyToOne('Customer', { eager: false, nullable: true, onDelete: 'CASCADE' }) @JoinColumn({ name: 'customer_id' }) public customer: Customer;...
It seems to be an issue with `@adminjs/bundler`. I will probably have to update it so that it requires `AdminJSOptions`. You should be able to add missing envs by creating...