mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-23 06:49:37 +02:00
* feat(backup): add BackupViewSet for data export and import functionality * Fixed frontend returning corrupt binary data * feat(import): enhance import functionality with confirmation check and improved city/region/country handling * Potential fix for code scanning alert no. 29: Information exposure through an exception Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> * Refactor response handling to use arrayBuffer instead of bytes * Refactor image cleanup command to use LocationImage model and update import/export view to include backup and restore functionality * Update backup export versioning and improve data restore warning message * Enhance image navigation and localization support in modal components * Refactor location handling in Immich integration components for consistency * Enhance backup and restore functionality with improved localization and error handling * Improve accessibility by adding 'for' attribute to backup file input label --------- Co-authored-by: Christian Zäske <blitzdose@gmail.com> Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
17 lines
No EOL
537 B
Python
17 lines
No EOL
537 B
Python
from .tags_view import *
|
|
from .location_image_view import *
|
|
from .location_view import *
|
|
from .category_view import *
|
|
from .checklist_view import *
|
|
from .collection_view import *
|
|
from .generate_description_view import *
|
|
from .ics_calendar_view import *
|
|
from .note_view import *
|
|
from .reverse_geocode_view import *
|
|
from .stats_view import *
|
|
from .transportation_view import *
|
|
from .global_search_view import *
|
|
from .attachment_view import *
|
|
from .lodging_view import *
|
|
from .recommendations_view import *
|
|
from .import_export_view import * |