Merge pull request #14328 from annando/rawcontent

Use "post" instead of "rawContent"
This commit is contained in:
Tobias Diekershoff 2024-07-28 12:35:56 +02:00 committed by GitHub
commit 3768558cb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 12 additions and 12 deletions

View file

@ -47,7 +47,7 @@ class Destroy extends BaseApi
$this->dba = $dba;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID();

View file

@ -54,7 +54,7 @@ class NewDM extends BaseApi
$this->directMessage = $directMessage;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID();

View file

@ -54,7 +54,7 @@ class Create extends BaseApi
$this->friendicaCircle = $friendicaCircle;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID();

View file

@ -54,7 +54,7 @@ class Destroy extends BaseApi
$this->friendicaCircle = $friendicaCircle;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID();

View file

@ -54,7 +54,7 @@ class Update extends BaseApi
$this->friendicaCircle = $friendicaCircle;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$this->checkAllowedScope(BaseApi::SCOPE_WRITE);
$uid = BaseApi::getCurrentUserID();

View file

@ -36,7 +36,7 @@ use Friendica\Protocol\Diaspora;
*/
class Activity extends BaseModule
{
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
if (!DI::userSession()->isAuthenticated()) {
throw new HTTPException\ForbiddenException();

View file

@ -33,7 +33,7 @@ use Friendica\Network\HTTPException;
*/
class Follow extends BaseModule
{
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$l10n = DI::l10n();

View file

@ -33,7 +33,7 @@ use Friendica\Network\HTTPException;
*/
class Ignore extends BaseModule
{
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$l10n = DI::l10n();

View file

@ -33,7 +33,7 @@ use Friendica\Network\HTTPException;
*/
class Pin extends BaseModule
{
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$l10n = DI::l10n();

View file

@ -34,7 +34,7 @@ use Friendica\Network\HTTPException;
*/
class Star extends BaseModule
{
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$l10n = DI::l10n();

View file

@ -49,7 +49,7 @@ class Tags extends BaseModule
$this->database = $database;
}
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$tags = $request['s'] ?? '';
$perPage = intval($request['n'] ?? self::DEFAULT_ITEMS_PER_PAGE);

View file

@ -47,7 +47,7 @@ $apiRoutes = [
'/account' => [
'/verify_credentials[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Account\VerifyCredentials::class, [R::GET ]],
'/rate_limit_status[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Account\RateLimitStatus::class, [R::GET ]],
'/update_profile[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Account\UpdateProfile ::class, [ R::POST]],
'/update_profile[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Account\UpdateProfile::class, [ R::POST]],
'/update_profile_image[.{extension:json|xml|rss|atom}]' => [Module\Api\Twitter\Account\UpdateProfileImage::class, [ R::POST]],
],