Adding permissions during startup

This commit is contained in:
2025-04-27 22:29:35 +02:00
parent 8a2f038185
commit c639f86068
12 changed files with 196 additions and 21 deletions

View File

@@ -45,6 +45,7 @@ internal static class Program
WebApplication app = builder.Build();
ProgramUtils.AddMiddlewares(ref app);
ProgramUtils.CreateRoles(ref app);
ProgramUtils.CreatePermissions(ref app);
Logger.Info("[Program][Initialize] End building");
return app;