feat: add optional ticket selection to planning report generation

Add a `numbers` form field to the planning report endpoint, allowing
admins to generate a report for a specific subset of open tickets
instead of always planning all open tickets. The selected numbers are
parsed from a comma-separated string, deduplicated, and passed to the
background job. The job's scope is recorded in the audit log and the
Devii tool description is updated to document the new parameter.
This commit is contained in:
2026-06-19 12:25:51 +00:00
parent ff3cbbbfe2
commit 1350e7fc66
16 changed files with 494 additions and 39 deletions
+22
View File
@@ -0,0 +1,22 @@
# retoor <retoor@molodetz.nl>
from tests.conftest import BASE_URL
def test_planning_page_renders_for_admin(alice):
page, _ = alice
page.goto(
f"{BASE_URL}/admin/issues/planning", wait_until="domcontentloaded"
)
assert page.url.endswith("/admin/issues/planning")
page.locator("h1:has-text('Ticket Planning')").wait_for(state="visible")
assert page.is_visible("text=phased implementation document")
def test_planning_page_blocks_members(bob):
page, _ = bob
page.goto(
f"{BASE_URL}/admin/issues/planning", wait_until="domcontentloaded"
)
assert "/admin/issues/planning" not in page.url
assert not page.is_visible("h1:has-text('Ticket Planning')")