remove modules claim and change return value in GenerateAccessToken

This commit is contained in:
Sergio Matias Urquin
2025-05-12 20:49:56 -06:00
parent 042588097e
commit 5b3cd5589d
3 changed files with 4 additions and 7 deletions

View File

@@ -13,6 +13,6 @@ namespace Core.Cerberos.Adapters
public RoleAdapter? Role { get; set; }
public IEnumerable<PermissionAdapter>? Permissions { get; set; }
public IEnumerable<ModuleAdapter>? Modules { get; set; }
public IEnumerable<ModuleAdapter> Modules { get; set; } = null!;
}
}