diff --git a/internal/models/area.go b/internal/models/area.go
index ed4a68c9d66503edf1800f779349b5c0e314b690..31f0af9e49cf231fb734b19ca2345623d77ad6c4 100644
--- a/internal/models/area.go
+++ b/internal/models/area.go
@@ -9,7 +9,7 @@ import (
 	"forge.grandlyon.com/apoyen/elections/internal/auth"
 )
 
-func (d *DataHandler) HandleArea(w http.ResponseWriter, r *http.Request) {
+func (d *DataHandler) handleArea(w http.ResponseWriter, r *http.Request) {
 	id, _ := strconv.Atoi(strings.TrimPrefix(r.URL.Path, "/api/Area/"))
 	switch method := r.Method; method {
 	case "GET":
diff --git a/internal/models/capturer.go b/internal/models/capturer.go
index f16f3273e091a08ba052d33cd12b5f2930928f5c..115b42d4121017ae51c41697d794d88638496576 100644
--- a/internal/models/capturer.go
+++ b/internal/models/capturer.go
@@ -10,8 +10,8 @@ import (
 	"forge.grandlyon.com/apoyen/elections/internal/auth"
 )
 
-// HandleCapturer handle API calls on Capturer
-func (d *DataHandler) HandleCapturer(w http.ResponseWriter, r *http.Request) {
+// handleCapturer handle API calls on Capturer
+func (d *DataHandler) handleCapturer(w http.ResponseWriter, r *http.Request) {
 	id, _ := strconv.Atoi(strings.TrimPrefix(r.URL.Path, "/api/Capturer/"))
 	switch method := r.Method; method {
 	case "GET":
diff --git a/internal/models/desk.go b/internal/models/desk.go
index fb314d5f5ae9a4891c933a604edda068cf7be11a..d510f267972cdf9edf940be1cc4f64bd6a40bb20 100644
--- a/internal/models/desk.go
+++ b/internal/models/desk.go
@@ -9,7 +9,7 @@ import (
 	"forge.grandlyon.com/apoyen/elections/internal/auth"
 )
 
-func (d *DataHandler) HandleDesk(w http.ResponseWriter, r *http.Request) {
+func (d *DataHandler) handleDesk(w http.ResponseWriter, r *http.Request) {
 	id, _ := strconv.Atoi(strings.TrimPrefix(r.URL.Path, "/api/Desk/"))
 	switch method := r.Method; method {
 	case "GET":
diff --git a/internal/models/election.go b/internal/models/election.go
index 6e8ea3fb4bf55e88839b00dede1c074476de522d..f53f6e73935cbe0be438b53c318e325b4f402efb 100644
--- a/internal/models/election.go
+++ b/internal/models/election.go
@@ -9,7 +9,7 @@ import (
 	"forge.grandlyon.com/apoyen/elections/internal/auth"
 )
 
-func (d *DataHandler) HandleElection(w http.ResponseWriter, r *http.Request) {
+func (d *DataHandler) handleElection(w http.ResponseWriter, r *http.Request) {
 	id, _ := strconv.Atoi(strings.TrimPrefix(r.URL.Path, "/api/Election/"))
 	switch method := r.Method; method {
 	case "GET":
diff --git a/internal/models/models.go b/internal/models/models.go
index 9fea419465b07c1c59709a4b7cef4a4f27b34c4d..40fc52ba7df3ef9e4c7742d7f6a4d9b7bbb96d3a 100644
--- a/internal/models/models.go
+++ b/internal/models/models.go
@@ -217,15 +217,15 @@ func (d *DataHandler) ProcessAPI(w http.ResponseWriter, r *http.Request) {
 	api := strings.Split(strings.TrimPrefix(r.URL.Path, "/api/"), "/")[0]
 	switch api {
 	case "Capturer":
-		d.HandleCapturer(w, r)
+		d.handleCapturer(w, r)
 	case "Election":
-		d.HandleElection(w, r)
+		d.handleElection(w, r)
 	case "Area":
-		d.HandleArea(w, r)
+		d.handleArea(w, r)
 	case "Section":
-		d.HandleSection(w, r)
+		d.handleSection(w, r)
 	case "Desk":
-		d.HandleDesk(w, r)
+		d.handleDesk(w, r)
 	}
 
 }
diff --git a/internal/models/section.go b/internal/models/section.go
index fb6356d868808013e50ed66d771e1aabf1072e6f..dd81f8df94f8ad0fa5aedd98486998c611fc8b5e 100644
--- a/internal/models/section.go
+++ b/internal/models/section.go
@@ -9,7 +9,7 @@ import (
 	"forge.grandlyon.com/apoyen/elections/internal/auth"
 )
 
-func (d *DataHandler) HandleSection(w http.ResponseWriter, r *http.Request) {
+func (d *DataHandler) handleSection(w http.ResponseWriter, r *http.Request) {
 	id, _ := strconv.Atoi(strings.TrimPrefix(r.URL.Path, "/api/Section/"))
 	switch method := r.Method; method {
 	case "GET":