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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Wayfinder.Engine.Worklist" Version="0.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Wayfinder.Engine.Worklist" Version="0.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Wayfinder.Engine.Worklist" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Wayfinder.Engine.Worklist --version 0.1.0
                    
#r "nuget: Wayfinder.Engine.Worklist, 0.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Wayfinder.Engine.Worklist@0.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Wayfinder.Engine.Worklist&version=0.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Wayfinder.Engine.Worklist&version=0.1.0
                    
Install as a Cake Tool

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}/advance
  • POST {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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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