mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Merge pull request #4904 from pixelfed/staging
Update ApiV2Controller, add vapid key to instance object. Thanks this…
This commit is contained in:
commit
73b4dab9a8
2 changed files with 4 additions and 0 deletions
|
@ -104,6 +104,7 @@
|
||||||
- Update horizon.php config ([1e3acade](https://github.com/pixelfed/pixelfed/commit/1e3acade))
|
- Update horizon.php config ([1e3acade](https://github.com/pixelfed/pixelfed/commit/1e3acade))
|
||||||
- Update PublicApiController, consume InstanceService blocked domains for account and statuses endpoints ([01b33fb3](https://github.com/pixelfed/pixelfed/commit/01b33fb3))
|
- Update PublicApiController, consume InstanceService blocked domains for account and statuses endpoints ([01b33fb3](https://github.com/pixelfed/pixelfed/commit/01b33fb3))
|
||||||
- Update ApiV1Controller, enforce blocked instance domain logic ([5b284cac](https://github.com/pixelfed/pixelfed/commit/5b284cac))
|
- Update ApiV1Controller, enforce blocked instance domain logic ([5b284cac](https://github.com/pixelfed/pixelfed/commit/5b284cac))
|
||||||
|
- Update ApiV2Controller, add vapid key to instance object. Thanks thisismissem! ([4d02d6f1](https://github.com/pixelfed/pixelfed/commit/4d02d6f1))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.9 (2023-08-21)](https://github.com/pixelfed/pixelfed/compare/v0.11.8...v0.11.9)
|
## [v0.11.9 (2023-08-21)](https://github.com/pixelfed/pixelfed/compare/v0.11.8...v0.11.9)
|
||||||
|
|
|
@ -96,6 +96,9 @@ class ApiV2Controller extends Controller
|
||||||
'streaming' => 'wss://' . config('pixelfed.domain.app'),
|
'streaming' => 'wss://' . config('pixelfed.domain.app'),
|
||||||
'status' => null
|
'status' => null
|
||||||
],
|
],
|
||||||
|
'vapid' => [
|
||||||
|
'public_key' => config('webpush.vapid.public_key'),
|
||||||
|
],
|
||||||
'accounts' => [
|
'accounts' => [
|
||||||
'max_featured_tags' => 0,
|
'max_featured_tags' => 0,
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in a new issue