Duc Tri Le

Results 6 issues of Duc Tri Le

Would be nice to have a list of the currently supported tags.

``` import {Column, Entity, PrimaryColumn} from "typeorm"; export enum Permission { MODIFY_PROFILE = 'modify-profile', VIEW_PROFILE = 'view-profile', } @Entity() export default class User { @PrimaryColumn() email!: string; @Column({ type: "set",...

This is a replacement for #1142 and just makes it so that the user can use @chainable instead. It will actually work in all cases instead of the former where...

Since we have the ability to attach events with certain namespaces, can we also add the ability to remove all events attached to a certain namespace?