From 96765ec3b16714f47322814738a217111fdadb4b Mon Sep 17 00:00:00 2001 From: Jan Wolff Date: Fri, 12 Sep 2025 10:59:19 +0200 Subject: don't allow upload lifetime configuration for now --- controller/app.go | 2 +- controller/file.go | 2 +- controller/template/index.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/controller/app.go b/controller/app.go index c22f165..172a2a2 100644 --- a/controller/app.go +++ b/controller/app.go @@ -45,7 +45,7 @@ func (app *App) StartScheduler() { go func() { for true { - time.Sleep(time.Minute * 13) + time.Sleep(time.Minute * 78) log.Println("running scheduled tasks") app.storage.GarbageCollect() diff --git a/controller/file.go b/controller/file.go index 7aed104..275cc15 100644 --- a/controller/file.go +++ b/controller/file.go @@ -41,7 +41,7 @@ func (app App) FilePost(res http.ResponseWriter, req *http.Request) { Protected: protected, Filename: formFileHeader.Filename, Data: fileData, - AvailableUntil: time.Now().Add(time.Hour * 2), + AvailableUntil: time.Now().Add(time.Hour * 24), } key, err := app.storage.Put(file) diff --git a/controller/template/index.html b/controller/template/index.html index f50be97..6f0fc50 100644 --- a/controller/template/index.html +++ b/controller/template/index.html @@ -15,12 +15,12 @@ -
+ -- cgit v1.2.3