This commit is contained in:
Michael Vogel 2024-02-18 15:52:30 +01:00 committed by GitHub
parent 07c20da08f
commit c6160a1c38
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 127 additions and 9 deletions

View file

@ -23,6 +23,7 @@ namespace Friendica\Factory\Api\Mastodon;
use Friendica\BaseFactory;
use Friendica\Database\Database;
use Friendica\Model\Subscription;
use Friendica\Network\HTTPException\UnprocessableEntityException;
use Psr\Log\LoggerInterface;
@ -56,6 +57,8 @@ class Application extends BaseFactory
$application['client_secret'],
$application['id'],
$application['redirect_uri'],
$application['website']);
$application['website'],
Subscription::getPublicVapidKey(),
);
}
}