diff --git a/config/packages/security.yaml b/config/packages/security.yaml index c2491fb..b026779 100644 --- a/config/packages/security.yaml +++ b/config/packages/security.yaml @@ -8,6 +8,8 @@ security: security: false main: anonymous: ~ + logout: + path: logout # activate different ways to authenticate # https://symfony.com/doc/current/security.html#firewalls-authentication diff --git a/src/Controller/FediPlanController.php b/src/Controller/FediPlanController.php index 77ae877..9babd00 100644 --- a/src/Controller/FediPlanController.php +++ b/src/Controller/FediPlanController.php @@ -213,11 +213,6 @@ class FediPlanController extends AbstractController public function scheduled() { - if ($this->get("security.authorization_checker")->isGranted('IS_AUTHENTICATED_FULLY')){ - $number = random_int(0, 100); - }else{ - $number = 0; - } return $this->render("fediplan/index.html.twig"); } @@ -227,11 +222,6 @@ class FediPlanController extends AbstractController public function logout() { - if ($this->get("security.authorization_checker")->isGranted('IS_AUTHENTICATED_FULLY')){ - $number = random_int(0, 100); - }else{ - $number = 0; - } return $this->render("fediplan/index.html.twig"); } diff --git a/src/Services/Mastodon_api.php b/src/Services/Mastodon_api.php index 0df272d..afca43d 100644 --- a/src/Services/Mastodon_api.php +++ b/src/Services/Mastodon_api.php @@ -463,6 +463,7 @@ class Mastodon_api { } + /** * accounts * diff --git a/templates/fediplan/schedule.html.twig b/templates/fediplan/schedule.html.twig index 3eac515..88395e6 100644 --- a/templates/fediplan/schedule.html.twig +++ b/templates/fediplan/schedule.html.twig @@ -81,7 +81,7 @@
- Counter: + Counter: 0
@@ -403,7 +403,8 @@ $('#media_container').html($('#media_container').html() + content); }, - url: 'https://{{ instance }}/api/v1/media' + url: 'https://{{ instance }}/api/v1/media', + acceptFileTypes: /(\.|\/)(gif|jpe?g|png|mp4|mp3)$/i }); // Enable iframe cross-domain access via redirect option: diff --git a/templates/nav.html.twig b/templates/nav.html.twig index 89a4bf4..8e5c0e3 100644 --- a/templates/nav.html.twig +++ b/templates/nav.html.twig @@ -1,15 +1,18 @@