From 60405ef0aaec9910c2e5405d309943ea510e79a6 Mon Sep 17 00:00:00 2001 From: Chris Chen Date: Wed, 27 May 2026 07:49:26 -0700 Subject: [PATCH] WIP --- .gitignore | 1 + API/ROLAC.API/ROLAC.API.sln | 28 ++++++++++++++++++- API/ROLAC.API/appsettings.json | 2 +- APP/email-template.html | 16 +++++------ APP/package-lock.json | 4 +-- APP/src/app/app.ts | 14 ++-------- .../login-page/login-page.component.html | 10 +++---- .../app/layout/header/header.component.html | 6 ++-- .../user-header/user-header.component.html | 6 ++-- .../user-navbar/user-navbar.component.html | 2 +- .../pages/dashboard/dashboard.component.html | 4 +-- .../user-portal/user-portal.component.html | 2 +- APP/src/app/shared/models/enums.model.ts | 2 +- APP/src/app/shared/services/auth.service.ts | 8 +++++- .../app/shared/services/ui-utils.service.ts | 8 +++--- APP/src/app/shared/styles/ui-utils.scss | 4 +-- APP/src/environments/environment.ts | 2 +- APP/src/index.html | 2 +- APP/src/utilities/storageKeys.ts | 2 +- 19 files changed, 74 insertions(+), 49 deletions(-) diff --git a/.gitignore b/.gitignore index cd6c0b8..7bb71a0 100644 --- a/.gitignore +++ b/.gitignore @@ -91,3 +91,4 @@ logs/ *.log *.tmp *.temp +/.claude diff --git a/API/ROLAC.API/ROLAC.API.sln b/API/ROLAC.API/ROLAC.API.sln index 4d8dab6..f9a55ab 100644 --- a/API/ROLAC.API/ROLAC.API.sln +++ b/API/ROLAC.API/ROLAC.API.sln @@ -1,20 +1,46 @@  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 -VisualStudioVersion = 17.14.36623.8 d17.14 +VisualStudioVersion = 17.14.36623.8 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ROLAC.API", "ROLAC.API.csproj", "{1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ROLAC.API.Tests", "..\ROLAC.API.Tests\ROLAC.API.Tests.csproj", "{2065B769-3D62-48F5-9456-96BED5FAF659}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|x64.ActiveCfg = Debug|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|x64.Build.0 = Debug|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|x86.ActiveCfg = Debug|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Debug|x86.Build.0 = Debug|Any CPU {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|Any CPU.ActiveCfg = Release|Any CPU {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|Any CPU.Build.0 = Release|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|x64.ActiveCfg = Release|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|x64.Build.0 = Release|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|x86.ActiveCfg = Release|Any CPU + {1F8C6494-4B18-4AD5-B63E-4958A8E2C21A}.Release|x86.Build.0 = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|x64.ActiveCfg = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|x64.Build.0 = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|x86.ActiveCfg = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Debug|x86.Build.0 = Debug|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|Any CPU.Build.0 = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|x64.ActiveCfg = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|x64.Build.0 = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|x86.ActiveCfg = Release|Any CPU + {2065B769-3D62-48F5-9456-96BED5FAF659}.Release|x86.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/API/ROLAC.API/appsettings.json b/API/ROLAC.API/appsettings.json index 66a1488..b83d126 100644 --- a/API/ROLAC.API/appsettings.json +++ b/API/ROLAC.API/appsettings.json @@ -13,6 +13,6 @@ "RefreshTokenExpiryDays": "30" }, "Cors": { - "AllowedOrigins": [ "https://localhost:4200" ] + "AllowedOrigins": [ "http://localhost:4200", "https://localhost:4200" ] } } diff --git a/APP/email-template.html b/APP/email-template.html index 19f1033..82d2299 100644 --- a/APP/email-template.html +++ b/APP/email-template.html @@ -4,7 +4,7 @@ - Escrow Portal Access - RBJ Identity + Escrow Portal Access - ROLCC AC