From 0f54da2c648a5913f6ed282f39dc7d6a62ef37da Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sun, 2 Feb 2025 11:06:04 +0200 Subject: feat(views/list): Fully implement list deletion --- models/archivelist.php | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'models/archivelist.php') diff --git a/models/archivelist.php b/models/archivelist.php index bf734e0..7a76475 100644 --- a/models/archivelist.php +++ b/models/archivelist.php @@ -49,4 +49,11 @@ class ArchiveList extends Table { "LID = \"$this->LID\"" ); } + + function delete() { + Table::_delete( + 'ArchiveLists', + "LID = \"$this->LID\"" + ); + } } -- cgit v1.2.3