diff options
Diffstat (limited to 'http_handle_repo_contrib_index.go')
-rw-r--r-- | http_handle_repo_contrib_index.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/http_handle_repo_contrib_index.go b/http_handle_repo_contrib_index.go index f352a3f..152c8cd 100644 --- a/http_handle_repo_contrib_index.go +++ b/http_handle_repo_contrib_index.go @@ -15,7 +15,7 @@ type id_title_status_t struct { Status string } -func handle_repo_contrib_index(w http.ResponseWriter, r *http.Request, params map[string]any) { +func httpHandleRepoContribIndex(w http.ResponseWriter, r *http.Request, params map[string]any) { var rows pgx.Rows var result []id_title_status_t var err error @@ -44,5 +44,5 @@ func handle_repo_contrib_index(w http.ResponseWriter, r *http.Request, params ma } params["merge_requests"] = result - render_template(w, "repo_contrib_index", params) + renderTemplate(w, "repo_contrib_index", params) } |