зеркало из https://github.com/nextcloud/deck.git
Only send overdue notifications for unarchived cards
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Родитель
02724fd4eb
Коммит
7c552e9a52
|
@ -125,7 +125,7 @@ class CardMapper extends DeckMapper implements IPermissionMapper {
|
|||
}
|
||||
|
||||
public function findOverdue() {
|
||||
$sql = 'SELECT id,title,duedate,notified from `*PREFIX*deck_cards` WHERE duedate < NOW()';
|
||||
$sql = 'SELECT id,title,duedate,notified from `*PREFIX*deck_cards` WHERE duedate < NOW() AND NOT archived';
|
||||
return $this->findEntities($sql);
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче