aboutsummaryrefslogtreecommitdiff
path: root/handle_repo_index.go
diff options
context:
space:
mode:
Diffstat (limited to 'handle_repo_index.go')
-rw-r--r--handle_repo_index.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/handle_repo_index.go b/handle_repo_index.go
index a5a6dc5..da19332 100644
--- a/handle_repo_index.go
+++ b/handle_repo_index.go
@@ -6,7 +6,6 @@ import (
func handle_repo_index(w http.ResponseWriter, r *http.Request) {
data := make(map[string]any)
- // TODO: Sanitize path values
group_name, repo_name := r.PathValue("group_name"), r.PathValue("repo_name")
data["group_name"], data["repo_name"] = group_name, repo_name
repo, err := open_git_repo(group_name, repo_name)