diff options
author | Marvin Borner | 2019-04-15 14:46:54 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-15 14:46:54 +0200 |
commit | 481426f28b548ba64097895d0604585e6f722480 (patch) | |
tree | 4212f99a34e547b1df02e6007e08b34fc66e7f6d /src/main/kotlin/DatabaseController.kt | |
parent | a0f7bd6052fa28dd789de4239bf07ff227574963 (diff) |
Added file delete buttons
Diffstat (limited to 'src/main/kotlin/DatabaseController.kt')
-rw-r--r-- | src/main/kotlin/DatabaseController.kt | 13 |
1 files changed, 13 insertions, 0 deletions
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 @@ -223,6 +223,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 */ fun isSetup(): Boolean { |