summaryrefslogtreecommitdiff
path: root/system/admin/server.go
diff options
context:
space:
mode:
authorSteve Manuel <nilslice@gmail.com>2016-10-30 23:31:37 -0700
committerSteve Manuel <nilslice@gmail.com>2016-10-30 23:31:37 -0700
commitdd4a88bed52b6127503824218fb97645d44e1a7d (patch)
treea4f5aad277aadee61ee9d4aa319de836d694b595 /system/admin/server.go
parentb1dd82806b8e31ff62d5cbb0612998411a8a1259 (diff)
adding initial code for merging pending to private content
Diffstat (limited to 'system/admin/server.go')
-rw-r--r--system/admin/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/server.go b/system/admin/server.go
index 161220e..5d93d84 100644
--- a/system/admin/server.go
+++ b/system/admin/server.go
@@ -24,11 +24,11 @@ func Run() {
http.HandleFunc("/admin/configure/users/delete", user.Auth(configUsersDeleteHandler))
http.HandleFunc("/admin/posts", user.Auth(postsHandler))
- http.HandleFunc("/admin/posts/approve", user.Auth(approvePostHandler))
http.HandleFunc("/admin/posts/search", user.Auth(searchHandler))
http.HandleFunc("/admin/edit", user.Auth(editHandler))
http.HandleFunc("/admin/edit/delete", user.Auth(deleteHandler))
+ http.HandleFunc("/admin/edit/approve", user.Auth(approvePostHandler))
http.HandleFunc("/admin/edit/upload", user.Auth(editUploadHandler))
pwd, err := os.Getwd()