Add 'title' property to Permission entity; update DatabaseSeeder to include Persian titles for permissions, enhancing localization support.

This commit is contained in:
2025-11-18 10:37:55 +03:30
parent 82f5cae16f
commit 1010c8d20a
2 changed files with 15 additions and 12 deletions
@@ -8,6 +8,9 @@ export class Permission extends BaseEntity {
@Unique()
name!: string;
@Property()
title!: string;
@ManyToMany({ entity: () => Role, mappedBy: r => r.permissions })
roles = new Collection<Role>(this);
}