Wayfinder.Engine.Worklist
0.1.0
dotnet add package Wayfinder.Engine.Worklist --version 0.1.0
NuGet\Install-Package Wayfinder.Engine.Worklist -Version 0.1.0
<PackageReference Include="Wayfinder.Engine.Worklist" Version="0.1.0" />
<PackageVersion Include="Wayfinder.Engine.Worklist" Version="0.1.0" />
<PackageReference Include="Wayfinder.Engine.Worklist" />
paket add Wayfinder.Engine.Worklist --version 0.1.0
#r "nuget: Wayfinder.Engine.Worklist, 0.1.0"
#:package Wayfinder.Engine.Worklist@0.1.0
#addin nuget:?package=Wayfinder.Engine.Worklist&version=0.1.0
#tool nuget:?package=Wayfinder.Engine.Worklist&version=0.1.0
Wayfinder.Engine.Worklist
A default, optional caseworker worklist surface — server-rendered GOV.UK markup for the
filter/sort/search/paginated queue list (see docs/guides/queue-worklist-filtering.md), an item
review page, advance, and per-cursor pickup/putback (see docs/guides/work-allocation.md). A host
wires it up once, or ignores this package entirely and hand-writes the same routes itself, as
Wayfinder.ReferenceApp originally did.
Usage
builder.Services.AddWorklist(options =>
{
options.ResolveTenantId = _ => "my-tenant";
options.ResolveAccessProfile = ctx => MyActors.ProfileForCaseworkerUser(GetUserId(ctx.User));
options.RenderPage = (title, body, ctx) => PageShell.Render(title, body, ctx.User);
options.WorklistPageTitle = "Caseworker queue";
options.ReviewPageTitle = "Review application";
});
// ...
app.MapWorklist(prefix: "/caseworker/queue").RequireAuthorization("Caseworker");
MapWorklist maps five routes under prefix, all genuinely relative to it — every link, form
action, and redirect inside the package is built from the prefix a host passes in, never
hardcoded — so a host can mount this at any path it likes:
GET {prefix}— the list: status/sort/search filters, a paginated table, and a Pick up/Put back control per row.GET {prefix}/{blueprintKey}/{instanceId}— the item review page.POST {prefix}/{blueprintKey}/{instanceId}/advancePOST {prefix}/{blueprintKey}/{instanceId}/pickup?cursorId=...POST {prefix}/{blueprintKey}/{instanceId}/putback?cursorId=...
What's deliberately left out
File-download and bulk-dataset REST routes stay hand-wired on the host — this package only builds
URLs pointing at them (via Wayfinder.Rendering.GovUk's WithFileDownloadUrls/
WithBulkDatasetApiUrls), assuming a host maps its own such routes under the same prefix. This
package owns zero page chrome: RenderPage is the escape hatch every response is wrapped through.
Why a separate package
Sits above both Wayfinder.Rendering.GovUk (GovUkStageJourney's journey rendering and posted-form
coercion) and Wayfinder.Engine.Http (StageFileUploads) — this package's own job is purely
wiring those together into real ASP.NET Core routes against IProcessManager, the same
Add.../Map... shape Wayfinder.Engine.Api and Wayfinder.Engine.Mcp already use.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net10.0
- Wayfinder.Engine (>= 0.7.0)
- Wayfinder.Engine.Http (>= 0.1.0)
- Wayfinder.Rendering.GovUk (>= 0.3.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 0.1.0 | 83 | 8/19/2026 |