Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
459e78c
Updated docstrings for endpoints & included in documentation
pendingintent Nov 24, 2025
ca7e46d
Reordered object lists
pendingintent Dec 2, 2025
a17ef28
Merge branch 'ui-layout' into update-endpoints
pendingintent Dec 2, 2025
672df4a
Added docs for 2 new endpoints for viewing categories
pendingintent Dec 2, 2025
0318e3f
Added concept category cache and corresponding tests
pendingintent Dec 2, 2025
ab410d2
Arm type now chosen from dropdown from codelist C174222
pendingintent Dec 2, 2025
7ecf23f
Commented out arm.type debug
pendingintent Dec 3, 2025
9b5c8ec
Added arm type and dataTypeOrigin properties and auditing
pendingintent Dec 3, 2025
6240e8e
Removed temp shared memory and write-ahead logging database files fro…
pendingintent Dec 3, 2025
b597523
Added temp shared memory and write-ahead logging to sqlite db
pendingintent Dec 3, 2025
31582eb
Arm audit added to edit.html
pendingintent Dec 3, 2025
e66ad60
Arm create includes type & data_origin_type
pendingintent Dec 3, 2025
211eaa7
Update src/soa_builder/web/initialize_database.py
pendingintent Dec 3, 2025
65309ac
Update src/soa_builder/web/app.py
pendingintent Dec 3, 2025
7f09a34
Update src/soa_builder/web/app.py
pendingintent Dec 3, 2025
12dcc0e
Update src/soa_builder/web/app.py
pendingintent Dec 3, 2025
b7909b3
Added helper _get_next_code_uid and refactor
pendingintent Dec 3, 2025
cb79e60
Moved _get_next_code_uid to utils.py and removed duplicate logic for …
pendingintent Dec 3, 2025
dd2aceb
Removed cross-site and scripting vulnerabilities
pendingintent Dec 3, 2025
7967c11
Update tests/test_code_uid_generation.py
pendingintent Dec 3, 2025
76d8ee2
Removed unused import
pendingintent Dec 3, 2025
44df93f
Merge branch 'arm-enhancement' of https://github.com/pendingintent/so…
pendingintent Dec 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ Thumbs.db

# SQLite / local DBs
*.db
*.db-shm
*.db-wal
*.sqlite

# Environment variables / secrets (add if created)
Expand Down
Binary file modified docs/api_endpoints.xlsx
Binary file not shown.
2 changes: 0 additions & 2 deletions normalize_soa.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
import csv
import os
import re
import sys
from dataclasses import asdict, dataclass
from typing import Any, Dict, List, Optional

Expand Down Expand Up @@ -259,7 +258,6 @@ def build_visit_activities(
vas: List[VisitActivity] = []
next_id = 1
for a_idx, r in enumerate(rows, start=1):
Copy link

Copilot AI Dec 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The variable 'activity_name' was removed but 'a_idx' is still present in the enumerate(). If 'activity_name' is truly unused, consider also removing 'a_idx' or using '_' for the unused index variable: for _, r in enumerate(rows, start=1):

Copilot uses AI. Check for mistakes.
activity_name = r[0]
for v_idx, visit in enumerate(visits, start=1):
if v_idx >= len(r):
continue
Expand Down
Loading