- Migrated Post and Post Comment modules to Aether API CRUD V3 - Added editable_fields for Posts and Post Comments - Implemented local filtering for 'archive_on' in BB route as V3 workaround - Verified IDAA Archives and Recovery Meetings are functional on V3 - Ensured all IDAA logic follows the API -> Processor -> DB Save pattern
24 lines
363 B
TypeScript
24 lines
363 B
TypeScript
export const editable_fields__post = [
|
|
'topic_id',
|
|
'topic',
|
|
'topic_name',
|
|
'name',
|
|
'title',
|
|
'content',
|
|
'anonymous',
|
|
'full_name',
|
|
'email',
|
|
'notify',
|
|
'enable_comments',
|
|
'archive',
|
|
'archive_on',
|
|
'linked_li_json',
|
|
'cfg_json',
|
|
'enable',
|
|
'hide',
|
|
'priority',
|
|
'sort',
|
|
'group',
|
|
'notes'
|
|
];
|