summaryrefslogtreecommitdiffstats
path: root/appinfo
diff options
context:
space:
mode:
Diffstat (limited to 'appinfo')
-rw-r--r--appinfo/routes.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/appinfo/routes.php b/appinfo/routes.php
index fd54794b5..de8f5a47a 100644
--- a/appinfo/routes.php
+++ b/appinfo/routes.php
@@ -239,9 +239,15 @@ $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_before_update', '/api/v1-2/cleanup/before-update')->get()->action(
function($params) {
- return App::main('NewsAPI', 'cleanUp', $params, new DIContainer());
+ return App::main('NewsAPI', 'beforeUpdate', $params, new DIContainer());
+ }
+);
+
+$this->create('news_api_after_update', '/api/v1-2/cleanup/after-update')->get()->action(
+ function($params) {
+ return App::main('NewsAPI', 'afterUpdate', $params, new DIContainer());
}
);