jkalberer
jkalberer
Apologies -- I figured this out. I still had my matcher set to a custom matcher I was debugging with: This is the pattern to use when you want to...
You need to initialize your DB connection (wherever you pass in your credentials) with a `entities: [CasbinRule]`. There might also be an API to add the metadata afterwords. Another thing...
Yeah, i have a numerical column that is nullable. I'll can get you an entity but it's just a really basic column that fails to serialize when the value is...
In this case I have an entity like: ``` class Entity { @Column({ nullable: true }) value: number | null; @CreateDateColumn({ type: 'timestamptz' }) created: Date; } ``` I should...