- Implemented workaround for 'conference' field search restriction in V3 by using local filtering - Optimized post_object to stop retrying on 4xx client errors (400, 401, 403) - Migrated Archives and Event/Recovery Meeting modules to Aether API CRUD V3 - Added editable_fields definitions for Archive and Archive Content objects
30 lines
568 B
TypeScript
30 lines
568 B
TypeScript
export const editable_fields__archive_content = [
|
|
'archive_id',
|
|
'archive_id_random',
|
|
'archive_content_type',
|
|
'name',
|
|
'description',
|
|
'content_html',
|
|
'content_json',
|
|
'url',
|
|
'url_text',
|
|
'hosted_file_id',
|
|
'hosted_file_id_random',
|
|
'file_path',
|
|
'filename',
|
|
'file_extension',
|
|
'original_datetime',
|
|
'original_timezone',
|
|
'original_location',
|
|
'original_url',
|
|
'original_url_text',
|
|
'enable_for_public',
|
|
'cfg_json',
|
|
'enable',
|
|
'hide',
|
|
'priority',
|
|
'sort',
|
|
'group',
|
|
'notes'
|
|
];
|