modified auth exception message to access message

pull/559/head
kompotkot 2022-03-21 10:32:33 +00:00
rodzic 1406d85e05
commit b0623f738c
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -130,7 +130,7 @@ func accessMiddleware(next http.Handler) http.Handler {
dataSource := extractDataSource(r)
if accessID == "" {
http.Error(w, "No authorization header passed with request", http.StatusForbidden)
http.Error(w, "No access id passed with request", http.StatusForbidden)
return
}