]> 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 cdcefc97f9a36fa3b8e6063ad98f28963d3c746e..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
  *
@@ -21,7 +21,9 @@
 
 namespace Friendica\Module\Api\Mastodon;
 
+use Friendica\App\Router;
 use Friendica\Core\System;
+use Friendica\DI;
 use Friendica\Module\BaseApi;
 
 /**
@@ -29,12 +31,20 @@ use Friendica\Module\BaseApi;
  */
 class Filters extends BaseApi
 {
+       protected function post(array $request = [])
+       {
+               self::checkAllowedScope(self::SCOPE_WRITE);
+
+               $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 = [])
        {
-               System::jsonError(404, ['error' => 'Record not found']);
+               self::checkAllowedScope(self::SCOPE_READ);
+
+               System::jsonExit([]);
        }
 }