mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-22 10:51:02 +01:00
- Fix: remove / update dangling references on data delete / rename in arr config. - Fix: Show dangling references in data selector so they can be removed after git operation (cascade operations not possible). - Fix: improve onclick behaviour so that button clicks in arr modal don't incorrectly trigger save / update. - Refactor: Turn data selector into a non modal component - now exists on the same pane as the arr modal. - Feat: Add search / sort functionality to data selector. Sorted A-Z by default now.
16 lines
731 B
Python
16 lines
731 B
Python
from .connection import get_db
|
|
from .queries.settings import get_settings, get_secret_key, save_settings
|
|
from .queries.arr import (get_unique_arrs, update_arr_config_on_rename,
|
|
update_arr_config_on_delete)
|
|
from .queries.format_renames import (add_format_to_renames,
|
|
remove_format_from_renames,
|
|
is_format_in_renames)
|
|
from .migrations.runner import run_migrations
|
|
|
|
__all__ = [
|
|
'get_db', 'get_settings', 'get_secret_key', 'save_settings',
|
|
'get_unique_arrs', 'update_arr_config_on_rename',
|
|
'update_arr_config_on_delete', 'run_migrations', 'add_format_to_renames',
|
|
'remove_format_from_renames', 'is_format_in_renames'
|
|
]
|