Commit remaining changes: logging upgrades and E2E test

This commit is contained in:
Scott Idem
2026-03-27 11:47:35 -04:00
parent 7f87f32b70
commit 1f9cbb0a1f
2 changed files with 7 additions and 0 deletions

View File

@@ -33,6 +33,12 @@ events_registration_obj_li = {
'member_status', 'registration_type_code',
'notes', 'created_on', 'updated_on', 'default_qry_str'
],
# Allow nested operations under both `event` and `event_person` parents.
# `event_badge` is directly linked to `event_person` (FK: event_person_id),
# but views expose it under `event` as well. Explicitly register both
# so nested CRUD routes like POST /v3/crud/event_person/{id}/event_badge/
# will be accepted by the generic nested router.
'parent_types': ['event', 'event_person'],
},
'event_badge_template': {
'tbl': 'event_badge_template',