From 0a9b82544dd28206ca710a0913532c7619706f62 Mon Sep 17 00:00:00 2001 From: Chris Chen Date: Thu, 25 Jun 2026 17:06:03 -0700 Subject: [PATCH] feat(1099): register Form1099 permission module and services Add Form1099 const to Modules.cs (after Form990Report) and insert it into the All display-order list. Register IForm1099ReportService and IPayee1099Service in Program.cs beside the existing Form990Report entry. Co-Authored-By: Claude Opus 4.8 --- API/ROLAC.API/Authorization/Modules.cs | 2 ++ API/ROLAC.API/Program.cs | 2 ++ 2 files changed, 4 insertions(+) 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();