1
0
mirror of https://github.com/janeczku/calibre-web synced 2026-01-06 06:09:03 +00:00

Made long running tasks cancellable. Added cancel button to cancellable tasks in the task list. Added APP_MODE env variable for determining if the app is running in development, test, or production.

This commit is contained in:
mmonkey
2021-09-29 02:40:12 -05:00
parent 26071d4e7a
commit 46205a1f83
20 changed files with 346 additions and 153 deletions

View File

@@ -47,3 +47,7 @@ class TaskReconnectDatabase(CalibreTask):
@property
def name(self):
return "Reconnect Database"
@property
def is_cancellable(self):
return False