Files
profilarr/backend/app/importer/strategies/__init__.py
Samuel Chau d7d6b13e46 feat(profiles): radarr/sonarr split functionality (#215)
- added option to set radarr/sonarr specific scores that profilarr's compiler will handle on import
- revise design for arr settings container - now styled as a table
- completely rewrote import module. Now uses connection pooling to reuse connections.
- fixed import progress bug where 1 failed format causes all other formats to be labelled as failed (even if they succeeded)
- fixed bug where on pull sync wasn't working
- improve styling for link / unlink database modals
- fixed issue where 0 score formats were removed in selective mode
2025-08-11 01:51:51 +09:30

6 lines
196 B
Python

"""Import strategies."""
from .base import ImportStrategy
from .format import FormatStrategy
from .profile import ProfileStrategy
__all__ = ['ImportStrategy', 'FormatStrategy', 'ProfileStrategy']