diff options
author | Steve <nilslice@gmail.com> | 2016-11-04 16:00:04 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-04 16:00:04 -0700 |
commit | 1099355fbbb353ce78d1ffca7d2d7eb76f096bc6 (patch) | |
tree | da3a4199762fd5d56e7b55bcb47d6b803544576c /system/admin/handlers.go | |
parent | 42474fed26258ec1ec36a1850029688767a522d9 (diff) | |
parent | 9c4a92c215153f7bca370396c9135eaebf0ab173 (diff) |
Merge pull request #14 from bosssauce/ponzu-dev
[core] API Request analytics and dashboard chart
Diffstat (limited to 'system/admin/handlers.go')
-rw-r--r-- | system/admin/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/admin/handlers.go b/system/admin/handlers.go index 64f10ed..f9a9486 100644 --- a/system/admin/handlers.go +++ b/system/admin/handlers.go @@ -25,7 +25,7 @@ import ( ) func adminHandler(res http.ResponseWriter, req *http.Request) { - view, err := Admin(nil) + view, err := Dashboard() if err != nil { log.Println(err) res.WriteHeader(http.StatusInternalServerError) |