From 481426f28b548ba64097895d0604585e6f722480 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 15 Apr 2019 14:46:54 +0200 Subject: Added file delete buttons --- src/main/kotlin/DatabaseController.kt | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'src/main/kotlin/DatabaseController.kt') diff --git a/src/main/kotlin/DatabaseController.kt b/src/main/kotlin/DatabaseController.kt index a89a719..74ddf70 100644 --- a/src/main/kotlin/DatabaseController.kt +++ b/src/main/kotlin/DatabaseController.kt @@ -222,6 +222,19 @@ class DatabaseController(dbFileLocation: String = "main.db") { } } + /** + * Removes the file from the database + */ + fun deleteFile(fileLocation: String, userId: Int) { + transaction { + try { + FileLocation.deleteWhere { FileLocation.location eq fileLocation and FileLocation. } + } catch (_: org.jetbrains.exposed.exceptions.ExposedSQLException) { + + } + } + } + /** * Checks whether the site has been set up */ -- cgit v1.2.3