summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-09-02 15:46:37 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-09-02 15:46:37 +0200
commit01e4a7a82429079a222972c907d02f9eb04a9e93 (patch)
tree6bad731bcd687f4686f6b4f0b8802bb7738f2f24 /appinfo
parent479d5e2e377e9c5daaea3359f84b563ac3ca5825 (diff)
fix updater cleanup route
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index 6ceaf94e1..617b63c53 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -233,7 +233,7 @@ $this->create('news_api_version', '/api/v1-2/version')->get()->action(
}
);
-$this->create('news_api_cleanup', '/api/v1-2/cleanUp')->get()->action(
+$this->create('news_api_cleanup', '/api/v1-2/cleanup')->get()->action(
function($params) {
return App::main('NewsAPI', 'cleanUp', $params, new DIContainer());
}