Uh oh!
There was an error while loading. Please reload this page.
feat(proposals): speakers can see and edit their talk proposals - #276
Merged
Conversation
* feat(proposals): let speakers access talk proposals via speaker email Guest form submissions leave owner/submitted_by as Guest, so speakers could never see their own proposals. Row-level access now derives from the speakers child table: permission_query_conditions scopes list queries and a has_permission hook guards single documents, replacing the if_owner restriction on Buzz User. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(api): add get_my_proposals endpoint with typed response Returns proposals where the session user is the submitter or a listed speaker, so the dashboard list stays personal even for roles that can read all proposals. Rows are validated through a pydantic model. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * feat(dashboard): list proposals via get_my_proposals API useList with a submitted_by filter missed guest-submitted proposals and co-speaker talks; the API scopes rows to submitter-or-speaker server-side. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore(dashboard): drop unused proposals fetch from Account page The Talk Proposals tab is always shown, so the useList existed only for a commented-out conditional and needlessly delayed the unknown-tab redirect settle check. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * chore(dashboard): inline Talk Proposals tab into static tab list Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * fix(proposals): address review findings on speaker access Speaker email match in has_permission is now case-insensitive: user emails are stored lowercase while guest-entered speaker emails keep their casing. The proposals list cache key is scoped to the session user again so a user switch cannot serve stale rows. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> (cherry picked from commit 45a7887)
harshtandiya
approved these changes
Jul 23, 2026
harshtandiya
enabled auto-merge
July 23, 2026 06:43
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
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 freeto 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.
Automated backport of #274 to
main.