Update V3 CRUD router and object definitions.

- Added 'external_person_id' to Post searchable fields.
- Updated api_crud_v3.py to respect 'fields_to_exclude_from_db' model attribute.
- Cleaned up old verification scripts (moved to tests/).
This commit is contained in:
Scott Idem
2026-01-09 15:36:50 -05:00
parent 1c0922ace2
commit 4c83e02c4a
4 changed files with 13 additions and 87 deletions

View File

@@ -47,7 +47,7 @@ cms_obj_li = {
# V3 Search Security:
'searchable_fields': [
'post_id_random', 'account_id_random', 'organization_id_random',
'person_id_random', 'user_id_random', 'title', 'content',
'person_id_random', 'user_id_random', 'external_person_id', 'title', 'content',
'type_code', 'topic_code', 'category_code', 'tags', 'location',
'enable', 'hide', 'priority', 'sort', 'group', 'notes',
'archive_on', 'created_on', 'updated_on'