feat(status): add showOnBoard flag to status templates#102
Merged
Conversation
Adds a nullable `show_on_board` boolean to `status_template`, mirroring the existing `show_on_roadmap`. null falls back to the app's default board heuristic (terminal statuses like completed/closed hidden); true/false is an explicit admin choice. Lets the board hide resolved feedback by default while keeping it one toggle away. Migration 0029 (additive, nullable column). Regenerated schema.graphql and schema.executable.ts.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Description
Adds a nullable
show_on_boardboolean tostatus_template, mirroring the existingshow_on_roadmap.nullfalls back to the app's default board heuristic (terminal statuses likecompleted/closedare hidden by default)true/falseis an explicit per-status admin choiceThis is the API half of hiding resolved feedback from the board by default (the app reads/toggles the flag). Migration
0029is additive (nullable column, no backfill). Regeneratedschema.graphqlandschema.executable.ts.Test Steps
status_template.show_on_boardexists and is nullablestatusTemplates { nodes { showOnBoard } }and confirm the field resolvesupdateStatusTemplate(input: { rowId, patch: { showOnBoard: false } })persists