add title to permission
Build and Deploy Docker Images / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-19 16:37:45 +03:30
parent c956bc0deb
commit c82cc654f0
4 changed files with 63 additions and 4 deletions
@@ -9,6 +9,9 @@ export class Permission extends BaseEntity {
@Column({ type: "enum", enum: PermissionEnum, nullable: false, unique: true })
name: PermissionEnum;
@Column({ type: "varchar", length: 150, nullable: false })
title: string;
@ManyToMany(() => Role, (role) => role.permissions)
roles: Role[];
}