dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit 58ace677efeb1e9ef1b1375ed8511b7b44786920
parent 489dec586a13a3669e08116b90e020047ff4c9fa
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Wed,  1 Feb 2023 22:05:43 -0800

add handler to actually solve the captcha

Diffstat:
Mpkg/web/web.go | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/pkg/web/web.go b/pkg/web/web.go @@ -304,6 +304,7 @@ func getBaseServer() *echo.Echo { e.POST("/file-drop/:uuid/tmp-init", handlers.FileDropTmpInitHandler) e.POST("/file-drop/:uuid/tmp", handlers.FileDropTmpHandler) e.GET("/downloads/:fileName", handlers.FileDropDownloadHandler) + e.POST("/downloads/:fileName", handlers.FileDropDownloadHandler) e.Any("*", getMainServer(i18nBundle, renderer)) return e }