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', 'member_status', 'registration_type_code',
'notes', 'created_on', 'updated_on', 'default_qry_str' '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': { 'event_badge_template': {
'tbl': 'event_badge_template', 'tbl': 'event_badge_template',

View File

@@ -96,6 +96,7 @@ Always run test scripts from the **project root** directory. Most scripts includ
* Use snake_case (or Snake_Case or Snake_case or test_NASA_example or test_API_key) * Use snake_case (or Snake_Case or Snake_case or test_NASA_example or test_API_key)
* Aether test/demo base URL: 'http://demo.localhost:5173' * Aether test/demo base URL: 'http://demo.localhost:5173'
* Aether development API: 'https://dev-api.oneskyit.com' * Aether development API: 'https://dev-api.oneskyit.com'
* Aether development API "secret" key: 'nT0jPeiCfxSifkiDZur9jA'
These are IDs for records that we can use for testing. Please do not delete them. They are also used for demo purposes with clients. These are IDs for records that we can use for testing. Please do not delete them. They are also used for demo purposes with clients.