diff options
author | Marvin Borner | 2019-04-16 18:08:26 +0200 |
---|---|---|
committer | Marvin Borner | 2019-04-16 18:08:26 +0200 |
commit | f84c2ada032efee0b9d9eb03c63b10458f135dcd (patch) | |
tree | 97197c249130ddbac299c6a37f048fbc4d3fab50 /src/main/kotlin/App.kt | |
parent | a32ec653bf2acc777d64803189a03a4b07b24096 (diff) |
Added markdown live preview editing
Diffstat (limited to 'src/main/kotlin/App.kt')
-rw-r--r-- | src/main/kotlin/App.kt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/kotlin/App.kt b/src/main/kotlin/App.kt index 4572cf1..2789530 100644 --- a/src/main/kotlin/App.kt +++ b/src/main/kotlin/App.kt @@ -218,6 +218,13 @@ fun upload(ctx: Context) { databaseController.addFile(path, getVerifiedUserId(ctx)) } } +/* +fun indexAllFiles(ctx: Context) { + Files.list(Paths.get("$fileHome/${getVerifiedUserId(ctx)}").forEach { + // TODO: Add file indexing function + } +} +*/ /** * Checks whether the file is binary or human-readable (text) |