From a32c2106113f62b8934171da670b95c1c579eb71 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Tue, 25 Nov 2014 21:51:36 +0000 Subject: [PATCH] Fixed bad method name --- app/controllers/ApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/ApiController.php b/app/controllers/ApiController.php index 96c04e98..006da1a9 100644 --- a/app/controllers/ApiController.php +++ b/app/controllers/ApiController.php @@ -160,7 +160,7 @@ * * @return Metric */ - public function postIncidents() { + public function postMetric() { $metric = new Metric(Input::all()); return $this->_saveMetric($metric); }