diff --git a/API/ROLAC.API/Authorization/Modules.cs b/API/ROLAC.API/Authorization/Modules.cs index fa0ce49..03066d7 100644 --- a/API/ROLAC.API/Authorization/Modules.cs +++ b/API/ROLAC.API/Authorization/Modules.cs @@ -17,6 +17,7 @@ public static class Modules public const string Ministries = "Ministries"; public const string FinanceDashboard = "FinanceDashboard"; public const string Form990Report = "Form990Report"; + public const string Form1099 = "Form1099"; public const string MonthlyStatements = "MonthlyStatements"; public const string ChurchProfile = "ChurchProfile"; public const string Disbursements = "Disbursements"; @@ -39,6 +40,7 @@ public static class Modules Ministries, FinanceDashboard, Form990Report, + Form1099, MonthlyStatements, ChurchProfile, Disbursements, diff --git a/API/ROLAC.API/Program.cs b/API/ROLAC.API/Program.cs index 4e2bbf5..dcaa3b2 100644 --- a/API/ROLAC.API/Program.cs +++ b/API/ROLAC.API/Program.cs @@ -158,6 +158,8 @@ builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped(); builder.Services.AddDataProtection(); builder.Services.AddScoped(); builder.Services.AddScoped();