Restore demo links on trial buttons to feature pages#460
Merged
aurelianware merged 1 commit intomainfrom Mar 14, 2026
Merged
Conversation
The "Start Trial to Explore" buttons on the demo dashboard were pointing to /signup instead of the actual demo feature pages. Updated links to /demo/claims, /demo/eligibility, /demo/authorizations, and /demo/members. Added secondary @page routes and [AllowAnonymous] to each feature page so demo visitors can access them without authentication. https://claude.ai/code/session_01P4R8L1YMKPVb3MSLymRWD2
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the portal demo dashboard so its “Start Trial to Explore” CTAs route visitors into the demo feature experiences, and adds /demo/* routes to the corresponding feature pages to make those URLs resolvable.
Changes:
- Updated demo dashboard buttons to link to
/demo/claims,/demo/eligibility,/demo/authorizations, and/demo/members. - Added secondary
@pageroutes (/demo/...) to the Claims/Eligibility/Authorizations/Members pages. - Added
[AllowAnonymous]+Microsoft.AspNetCore.Authorizationimports to those feature pages.
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| src/portal/CloudHealthOffice.Portal/Pages/Demo.razor | Fixes CTA links to point at demo feature routes instead of /signup. |
| src/portal/CloudHealthOffice.Portal/Pages/Claims.razor | Adds /demo/claims route and marks the component [AllowAnonymous]. |
| src/portal/CloudHealthOffice.Portal/Pages/Eligibility.razor | Adds /demo/eligibility route and marks the component [AllowAnonymous]. |
| src/portal/CloudHealthOffice.Portal/Pages/Authorizations.razor | Adds /demo/authorizations route and marks the component [AllowAnonymous]. |
| src/portal/CloudHealthOffice.Portal/Pages/Members.razor | Adds /demo/members route and marks the component [AllowAnonymous]. |
| @page "/demo/members" | ||
| @using Microsoft.AspNetCore.Authorization | ||
| @using CloudHealthOffice.Portal.Services | ||
| @attribute [AllowAnonymous] |
Comment on lines
+3
to
+5
| @using Microsoft.AspNetCore.Authorization | ||
| @using CloudHealthOffice.Portal.Services | ||
| @attribute [AllowAnonymous] |
Comment on lines
1
to
+5
| @page "/claims" | ||
| @page "/demo/claims" | ||
| @using Microsoft.AspNetCore.Authorization | ||
| @using CloudHealthOffice.Portal.Services | ||
| @attribute [AllowAnonymous] |
Comment on lines
+3
to
+5
| @using Microsoft.AspNetCore.Authorization | ||
| @using CloudHealthOffice.Portal.Services | ||
| @attribute [AllowAnonymous] |
| @page "/demo/authorizations" | ||
| @using Microsoft.AspNetCore.Authorization | ||
| @using CloudHealthOffice.Portal.Services | ||
| @attribute [AllowAnonymous] |
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.
The "Start Trial to Explore" buttons on the demo dashboard were pointing
to /signup instead of the actual demo feature pages. Updated links to
/demo/claims, /demo/eligibility, /demo/authorizations, and /demo/members.
Added secondary @page routes and [AllowAnonymous] to each feature page
so demo visitors can access them without authentication.
https://claude.ai/code/session_01P4R8L1YMKPVb3MSLymRWD2