- Created .editable_fields.ts files for Journals, Events, and Sponsorships modules - Standardized the whitelist pattern across the entire codebase - Updated TODO.md and GEMINI.md with recent accomplishments and learnings
33 lines
532 B
TypeScript
33 lines
532 B
TypeScript
export const editable_fields__journal_entry = [
|
|
'code',
|
|
'journal_entry_type',
|
|
'activity_code',
|
|
'category_code',
|
|
'type_code',
|
|
'topic_code',
|
|
'tags',
|
|
'public',
|
|
'private',
|
|
'personal',
|
|
'professional',
|
|
'name',
|
|
'short_name',
|
|
'summary',
|
|
'outline',
|
|
'content',
|
|
'content_html',
|
|
'content_json',
|
|
'history',
|
|
'alert',
|
|
'alert_msg',
|
|
'data_json',
|
|
'enable',
|
|
'hide',
|
|
'archive',
|
|
'archive_on',
|
|
'priority',
|
|
'sort',
|
|
'group',
|
|
'notes'
|
|
];
|