]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Api/Mastodon/Filters.php
Issue 12191: We can now follow and unfollow tags via API
[friendica.git] / src / Module / Api / Mastodon / Filters.php
index 2b505e0f29bde4bd17ea53433b3200ee28e03430..c2ee8034304a3dbd8dceae054e824f4771969151 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -23,6 +23,7 @@ namespace Friendica\Module\Api\Mastodon;
 
 use Friendica\App\Router;
 use Friendica\Core\System;
+use Friendica\DI;
 use Friendica\Module\BaseApi;
 
 /**
@@ -30,18 +31,17 @@ use Friendica\Module\BaseApi;
  */
 class Filters extends BaseApi
 {
-       public static function post(array $parameters = [])
+       protected function post(array $request = [])
        {
                self::checkAllowedScope(self::SCOPE_WRITE);
 
-               self::unsupported(Router::POST);
+               $this->response->unsupported(Router::POST, $request);
        }
 
        /**
-        * @param array $parameters
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
-       public static function rawContent(array $parameters = [])
+       protected function rawContent(array $request = [])
        {
                self::checkAllowedScope(self::SCOPE_READ);