feature/AB#32424 - Add Applicant Portal Settings page#2237
Merged
JamesPasta merged 10 commits intodevfrom Apr 16, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new “Applicant Portal Settings” admin page to allow editing the externally-displayed (portal) labels for application statuses.
Changes:
- Introduces a new Razor Page (
/ApplicantPortalSettings) with DataTable-driven UI and client-side save behavior. - Adds a new application service operation + DTOs to persist updated external status labels.
- Adds localization strings and a topbar navigation entry to reach the new page.
Reviewed changes
Copilot reviewed 10 out of 10 changed files in this pull request and generated 7 comments.
Show a summary per file
| File | Description |
|---|---|
| applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantPortalSettings/Index.js | Collects edited status labels and calls the backend update endpoint. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantPortalSettings/Index.css | Styles the settings layout and status table. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantPortalSettings/Index.cshtml.cs | Loads the status list for display. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Web/Pages/ApplicantPortalSettings/Index.cshtml | Renders the status label edit table and Save button. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Domain.Shared/Localization/GrantManager/en.json | Adds localized strings for the new page and notifications. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Application/GrantApplications/ApplicationStatusAppService.cs | Adds service method to update external status labels. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/UpdateApplicationStatusExternalLabelsDto.cs | Adds request DTO wrapper for bulk label updates. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/UpdateApplicationStatusExternalLabelDto.cs | Adds per-status update DTO with validation attributes. |
| applications/Unity.GrantManager/src/Unity.GrantManager.Application.Contracts/GrantApplications/IApplicationStatusService.cs | Extends service contract to include the update operation. |
| applications/Unity.GrantManager/modules/Unity.Theme.UX2/src/Unity.Theme.UX2/Themes/UX2/Components/Topbar/Default.cshtml | Adds a dropdown link to the new settings page. |
…nal-application-status
1 similar comment
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Pull request overview
Adds a new “Applicant Portal Settings” admin page to allow editing the externally-displayed (portal) labels for application statuses.
Changes:
/ApplicantPortalSettings) with DataTable-driven UI and client-side save behavior.