API actions are not ManagedAction yet

This commit is contained in:
Mikael Nordfeldth 2015-07-09 13:46:03 +02:00
parent 2103075ffa
commit 43cec8eaac
1 changed files with 5 additions and 1 deletions

View File

@ -51,10 +51,14 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
{ {
var $notices = null; var $notices = null;
protected function doPreparation() protected function prepare(array $args=array())
{ {
parent::prepare($args);
$this->tag = $this->arg('tag'); $this->tag = $this->arg('tag');
$this->notices = $this->getNotices(); $this->notices = $this->getNotices();
return true;
} }
/** /**