Moved reminders.py, static_reminders.py and templates.py to implementations folder

This commit is contained in:
CasVT
2025-08-18 15:29:35 +02:00
parent 5bfe6e207d
commit d80dd8c2a0
5 changed files with 6 additions and 6 deletions

View File

@@ -108,9 +108,9 @@ class NotificationService:
Raises:
NotificationServiceInUse: The service is still used by a reminder.
"""
from backend.features.reminders import Reminder
from backend.features.static_reminders import StaticReminder
from backend.features.templates import Template
from backend.implementations.reminders import Reminder
from backend.implementations.static_reminders import StaticReminder
from backend.implementations.templates import Template
LOGGER.info(f'Deleting notification service {self.id}')

View File

@@ -15,11 +15,11 @@ from backend.base.definitions import (ApiKeyEntry, Constants,
SendResult, StartType)
from backend.base.helpers import folder_path, return_api
from backend.base.logging import LOGGER, get_log_filepath
from backend.features.reminders import Reminders
from backend.features.static_reminders import StaticReminders
from backend.features.templates import Templates
from backend.implementations.apprise_parser import get_apprise_services
from backend.implementations.notification_services import NotificationServices
from backend.implementations.reminders import Reminders
from backend.implementations.static_reminders import StaticReminders
from backend.implementations.templates import Templates
from backend.implementations.users import Users
from backend.internals.db_backup_import import (create_database_copy,
get_backup, get_backups,