adminjs-typeorm
adminjs-typeorm copied to clipboard
TypeORM adapter for AdminJS
It would be nice for TypeORM virtual columns to be supported within AdminJS. I tried, but didn't have much luck ``` import { Column, Entity, JoinColumn, ManyToOne, OneToOne, RelationId, type...
Hello, thank you for your work, it is very valuable to us. I would like to know if there are plans to support M:N relation. I know that this can...
**Overview** Change all private member variable visibility to protected so that library consumers can extend and switch adapter behavior to meet their needs. I wanted to [add support for soft...
Hello, I already seen something similar in the "closed" issues where is a workaround but not a solution. Is possible to find a solution for this issue.  Node.js v18.16.0...
I'm trying to understand if a user is authenticated after I login using the default Admin.js login procedure. I'm not using the admin.js router but just a simple express.js router...
Removed '*' from AdminJSExpress import. See: https://github.com/SoftwareBrothers/adminjs-expressjs/issues/111
Handles https://github.com/SoftwareBrothers/adminjs-typeorm/issues/54 Sometimes you might want to find entities that soft deleted. You can extend the existing entity with `withDeleted` property: ``` @Entity() export class Person extends BaseEntity { @DeleteDateColumn()...
Hello I have the following codes in my entity: ``` @ManyToOne(() => OrganizationEntity, (organization) => organization.code) @JoinColumn({ name: 'organizationCode', referencedColumnName: 'code' }) organization: OrganizationEntity; @Column({ name: 'organizationCode' }) organizationCode: number;...
if the resource has the boolean option "withDeleted" : true, it should list deleted record, and moreover, if it is foreign-key of some other resource, it should be populated in...
With the new versions of adminjs and adminjs-typeorm I see that child relation is duplicated when I'm editing the parent. Here are my entities: ```ts @Entity() class Bill extends BaseEntity...