Let a page follow a whole subject type - #362
Merged
Merged
Conversation
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
follows= took one subject, so a board page had nothing to watch and never updated. It now also takes a subject class: the type with an empty id, which the shell streams through the board stream the app already serves. A Link refuses a class, because a link opens one subject's page.
czpython
force-pushed
the
follow-a-subject-type
branch
from
August 30, 2026 16:08
5178dde to
a813725
Compare
czpython
enabled auto-merge (squash)
August 30, 2026 16:08
czpython
disabled auto-merge
August 30, 2026 16:11
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.
follows=took one subject, so a page about many subjects had nothing to watch and never updated as work arrived. That is the one thing a React board could do that a Python page could not.follows=also takes the subject class now. The page, or a named region in it, then watches every subject of that type:subject_idis empty, and the shell reads the board stream the app already serves.No new block, no new endpoint, no new hook.
GET /api/<app>/<subject type>/streamhas been mounted for every declared subject all along, and the shell already had the URL builder for it.A
Linkrefuses a class. A link opens one subject's page, so a type with no id would render a link that goes nowhere.