changeset 426:4a03d000c854

Fixed wrong comments.
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 16 Aug 2018 17:37:29 +0200
parents c49f4c1808b1
children e4b961315e9f
files pkg/controllers/routes.go
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/pkg/controllers/routes.go	Thu Aug 16 17:31:25 2018 +0200
+++ b/pkg/controllers/routes.go	Thu Aug 16 17:37:29 2018 +0200
@@ -52,7 +52,7 @@
 		Handle: passwordReset,
 	}).Methods(http.MethodGet)
 
-	// Proxy for external WFSs.
+	// External proxies.
 	proxy := &httputil.ReverseProxy{
 		Director:       proxyDirector(findProxy("external")),
 		ModifyResponse: proxyModifyResponse("/api/external/"),
@@ -68,7 +68,7 @@
 			http.MethodGet, http.MethodPost,
 			http.MethodPut, http.MethodDelete)
 
-	// Proxy for external WFSs.
+	// Internal proxies.
 	internal := &httputil.ReverseProxy{
 		Director:       proxyDirector(findProxy("internal")),
 		ModifyResponse: proxyModifyResponse("/api/internal/"),