feat: sign-in provider chooser, API docs, and dashboard URLs (PROT-7)#2
Merged
Conversation
ljones491
reviewed
Jun 2, 2026
ljones491
approved these changes
Jun 2, 2026
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.
Registry follow-ups for PROT-7, consolidated.
Sign-in provider chooser
Previously
/connect/authorizeslammed unauthenticated users straight into GitHub. Now:/login) that lists the configured providers; picking one (/login/challenge) forwards through it and back to the original authorize request.identity_providerhint (e.g.identity_provider=github) to auto-forward and skip the chooser.AuthProviders), so adding Google/Microsoft/etc. later is just a list entry + a registered handler.API docs + dashboard URLs
/openapi/v1.json(built-in) and an interactive Scalar reference at/scalar/v1(Development only).apiresource shows named, clickable links (API reference, OpenAPI, Service metadata, OpenID configuration, Health) instead of raw base URLs.Infra
Verification
dotnet testgreen (4/4, incl. a new test that the chooser page lists providers)./login; the chooser renders the GitHub option;/login/challenge?provider=github→ 302 github.com; authorize withidentity_provider=github→ 302 github.com (chooser skipped). The OpenAPI/Scalar/health links all resolve.Part of PROT-7.