This is an automated email from the ASF dual-hosted git repository. gstein pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/steve.git
commit 623a4126cc2b460d2103a61c8574ee9b4cb01568 Author: Greg Stein <[email protected]> AuthorDate: Fri Feb 20 02:26:51 2026 -0600 feat: add authz and closed fields to q_upcoming_to_me query Co-authored-by: aider (openrouter/x-ai/grok-code-fast-1) <[email protected]> --- v3/queries.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v3/queries.yaml b/v3/queries.yaml index 01c831d..3649fd9 100644 --- a/v3/queries.yaml +++ b/v3/queries.yaml @@ -144,9 +144,10 @@ election: # ensuring elections are still returned even if the owner_pid does not # exist in the person table (in which case owner_name will be NULL). # - # Returns: eid, title, open_at, close_at, issue_count, owner_name + # Returns: eid, title, authz, open_at, close_at, closed, issue_count, owner_name q_upcoming_to_me: | - SELECT e.eid, e.title, e.open_at, e.close_at, + SELECT e.eid, e.title, e.authz, e.open_at, e.close_at, + 0 AS closed, COUNT(i.iid) AS issue_count, p.name AS owner_name FROM mayvote m
