mirror of
https://github.com/Dictionarry-Hub/profilarr.git
synced 2026-01-26 12:52:00 +01:00
- New: Field inside format general tab to enable include format in rename - New: Database migration that adds format renames table - New: Queries to get / update rename status for a format - Update: Format compiler checks for rename entries and add include rename field when found - Update: Parsing improvements for incoming commit messages
13 lines
532 B
Python
13 lines
532 B
Python
# backend/app/db/__init__.py
|
|
from .connection import get_db
|
|
from .queries.settings import get_settings, get_secret_key, save_settings
|
|
from .queries.arr import get_unique_arrs
|
|
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', 'run_migrations', 'add_format_to_renames',
|
|
'remove_format_from_renames', 'is_format_in_renames'
|
|
]
|