From f2bceb48cf41c8c44fbc66114fd525d11535c72c Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Fri, 26 Sep 2025 16:55:34 -0700 Subject: [PATCH] backups: Don't show enable/disable button as app can't be disabled Fixes: #2472. Tests: - On backups page, the enable/disable toggle button is not visible anymore. Signed-off-by: Sunil Mohan Adapa Reviewed-by: Veiko Aasa --- plinth/modules/backups/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plinth/modules/backups/__init__.py b/plinth/modules/backups/__init__.py index 6b1542055..66a231110 100644 --- a/plinth/modules/backups/__init__.py +++ b/plinth/modules/backups/__init__.py @@ -35,6 +35,8 @@ class BackupsApp(app_module.App): _version = 3 + can_be_disabled = False + def __init__(self) -> None: """Create components for the app.""" super().__init__()