aboutsummaryrefslogtreecommitdiff
path: root/http_handle_group_index.go
diff options
context:
space:
mode:
authorRunxi Yu <me@runxiyu.org>2025-03-06 20:59:46 +0800
committerRunxi Yu <me@runxiyu.org>2025-03-06 20:59:46 +0800
commit60f192d4935a36c2d56e059cce6a9dab451eeccb (patch)
tree5ecc264ce6c8f7363f6f48a590ce5f0ad3065da5 /http_handle_group_index.go
parentgroup/index: Add create repo form (diff)
downloadforge-60f192d4935a36c2d56e059cce6a9dab451eeccb.tar.gz
forge-60f192d4935a36c2d56e059cce6a9dab451eeccb.tar.zst
forge-60f192d4935a36c2d56e059cce6a9dab451eeccb.zip
*: Remove unnecessary debug printf
Diffstat (limited to 'http_handle_group_index.go')
-rw-r--r--http_handle_group_index.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/http_handle_group_index.go b/http_handle_group_index.go
index e235006..97ffee5 100644
--- a/http_handle_group_index.go
+++ b/http_handle_group_index.go
@@ -4,7 +4,6 @@
package main
import (
- "fmt"
"net/http"
"github.com/jackc/pgx/v5"
@@ -131,7 +130,5 @@ func handle_group_index(w http.ResponseWriter, r *http.Request, params map[strin
params["description"] = group_description
params["direct_access"] = direct_access
- fmt.Println(group_path)
-
render_template(w, "group", params)
}