diff --git a/templates/web/account/authorized_apps.html.twig b/templates/web/account/authorized_apps.html.twig index f54981e521..f8c03ef778 100644 --- a/templates/web/account/authorized_apps.html.twig +++ b/templates/web/account/authorized_apps.html.twig @@ -14,18 +14,18 @@ {% if applications|length > 0 %}
- - {{ application.get_name() }} + + {{ application.getName() }} - {% if application.get_creator() is not none %} + {% if application.getCreator() is not none %} - {% set user_name = application.get_creator().getDisplayName() %} + {% set user_name = application.getCreator().getDisplayName() %} {% trans with {'%user_name%' : user_name} %}par %user_name%{% endtrans %} {% endif%} @@ -34,7 +34,7 @@ {{ "Not Allowed" | trans }} {{ "Allowed" | trans }}
-{{ application.get_description()|truncate(120, true, "...") }}
+{{ application.getDescription()|truncate(120, true, "...") }}