summaryrefslogtreecommitdiff
path: root/system/admin/server.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2017-01-11 18:44:15 -0800
committerSteve Manuel <nilslice@gmail.com>2017-01-11 18:44:15 -0800
commit6428f9982e7f1d42e70a18d2e210873eb730959c (patch)
treeed4168d5c765e50b57f54a2604dd7a078b6d8926 /system/admin/server.go
parentdd233c720e32b1c19e8bb344dff2c19b2d803277 (diff)
moving addon handlers to addon package to avoid import issues
Diffstat (limited to 'system/admin/server.go')
-rw-r--r--system/admin/server.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/system/admin/server.go b/system/admin/server.go
index f2bf244..155892a 100644
--- a/system/admin/server.go
+++ b/system/admin/server.go
@@ -23,9 +23,6 @@ func Run() {
http.HandleFunc("/admin/recover", forgotPasswordHandler)
http.HandleFunc("/admin/recover/key", recoveryKeyHandler)
- http.HandleFunc("/admin/addons", user.Auth(addonsHandler))
- http.HandleFunc("/admin/addon", user.Auth(addonHandler))
-
http.HandleFunc("/admin/configure", user.Auth(configHandler))
http.HandleFunc("/admin/configure/users", user.Auth(configUsersHandler))
http.HandleFunc("/admin/configure/users/edit", user.Auth(configUsersEditHandler))