summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-01-05 15:49:13 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-01-05 15:49:13 (GMT)
commit2383f77970c87504b96677e010a8aa954d6955f5 (patch)
tree11666ae2cf01af7bd78cc328cd36487722487094
parent283c85305cb09c964ed3ad2783a47a6f5297c9c7 (diff)
disabled trusted web interface
-rw-r--r--src/helsinki.at/rhimportd/ctrlWeb.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helsinki.at/rhimportd/ctrlWeb.go b/src/helsinki.at/rhimportd/ctrlWeb.go
index ba4760a..c1cd4b5 100644
--- a/src/helsinki.at/rhimportd/ctrlWeb.go
+++ b/src/helsinki.at/rhimportd/ctrlWeb.go
@@ -45,7 +45,7 @@ func (self webHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
func StartControlWeb(addr string, conf *rhimport.Config, rddb *rhimport.RdDbChan, sessions *rhimport.SessionStoreChan) {
http.Handle("/public/simple", webHandler{conf, rddb, sessions, false, webSimpleHandler})
- http.Handle("/trusted/simple", webHandler{conf, rddb, sessions, true, webSimpleHandler})
+ // http.Handle("/trusted/simple", webHandler{conf, rddb, sessions, true, webSimpleHandler})
http.Handle("/public/socket", webHandler{conf, rddb, sessions, false, webSocketHandler})