feat(v3-cms): standardize Post Comment IDs and enhance CMS searchability

This commit is contained in:
Scott Idem
2026-02-05 19:20:18 -05:00
parent 12d725f468
commit 1cfbf9ebad
2 changed files with 29 additions and 13 deletions

View File

@@ -49,7 +49,7 @@ cms_obj_li = {
],
# V3 Search Security:
'searchable_fields': [
'id', 'account_id', 'person_id', 'user_id',
'id', 'account_id', 'person_id', 'user_id', 'external_person_id',
'post_id_random', 'account_id_random', 'organization_id_random',
'person_id_random', 'user_id_random', 'external_person_id', 'title', 'content',
'type_code', 'topic_code', 'category_code', 'tags', 'location',
@@ -80,7 +80,7 @@ cms_obj_li = {
],
# V3 Search Security:
'searchable_fields': [
'id', 'post_id', 'person_id', 'user_id', 'account_id',
'id', 'post_id', 'account_id', 'person_id', 'user_id', 'external_person_id',
'post_comment_id_random', 'account_id_random', 'post_id_random',
'person_id_random', 'user_id_random', 'content', 'enable', 'hide',
'priority', 'sort', 'group', 'notes', 'created_on', 'updated_on'