0
omar created
I would like to use the same static roles for tenants. As of now, I have to create the roles for each tenant every time I create a new tenant. I want to share all four roles for all my tenants. Let's say I can the permissions for the "Student" role, I would have to change it for all tenants. I want all roles for tenants to have the same permission.
public static class StaticRoleNames
{
public static class Host
{
public const string Sysadmin = "Sysadmin";
}
public static class Tenants
{
public const string Admin = "Admin";
public const string Teacher = "Teacher";
public const string Student = "Student";
public const string Parent = "Parent";
}
}
Thank you!