mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Update libs
This commit is contained in:
parent
16a398e852
commit
f0881c2d51
3 changed files with 605 additions and 597 deletions
|
@ -41,7 +41,7 @@
|
||||||
"symfony/web-link": "7.0.*",
|
"symfony/web-link": "7.0.*",
|
||||||
"symfony/yaml": "7.0.*",
|
"symfony/yaml": "7.0.*",
|
||||||
"twig/extra-bundle": "^2.12|^3.0",
|
"twig/extra-bundle": "^2.12|^3.0",
|
||||||
"twig/twig": "^2.12|^3.0"
|
"twig/twig": "v3.15.0"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"allow-plugins": {
|
"allow-plugins": {
|
||||||
|
|
1196
composer.lock
generated
1196
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -283,7 +283,7 @@ class FediPlanController extends AbstractController
|
||||||
name: 'load_more',
|
name: 'load_more',
|
||||||
options: ['expose' => true]
|
options: ['expose' => true]
|
||||||
)]
|
)]
|
||||||
public function loadMoreAction(Mastodon_api $mastodon_api, string $max_id = null): JsonResponse
|
public function loadMoreAction(Mastodon_api $mastodon_api, ?string $max_id = null): JsonResponse
|
||||||
{
|
{
|
||||||
/** @var $user MastodonAccount */
|
/** @var $user MastodonAccount */
|
||||||
$user = $this->getUser();
|
$user = $this->getUser();
|
||||||
|
@ -310,7 +310,7 @@ class FediPlanController extends AbstractController
|
||||||
defaults: ['_locale'=>'en'],
|
defaults: ['_locale'=>'en'],
|
||||||
methods: ['POST']
|
methods: ['POST']
|
||||||
)]
|
)]
|
||||||
public function deleteMessage(Mastodon_api $mastodon_api, string $id = null): JsonResponse
|
public function deleteMessage(Mastodon_api $mastodon_api, ?string $id = null): JsonResponse
|
||||||
{
|
{
|
||||||
$user = $this->getUser();
|
$user = $this->getUser();
|
||||||
$mastodon_api->set_url("https://" . $user->getInstance());
|
$mastodon_api->set_url("https://" . $user->getInstance());
|
||||||
|
|
Loading…
Add table
Reference in a new issue