1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-06 17:41:01 +00:00

Replace hardcoded url by current wallabag url

This commit is contained in:
Nicolas Lœuillet 2023-07-30 10:05:59 +02:00
parent e80a169435
commit c1cba72a19
2 changed files with 6 additions and 7 deletions

View file

@ -99,6 +99,9 @@ class DeveloperController extends AbstractController
*/
public function howtoFirstAppAction()
{
return $this->render('@WallabagCore/Developer/howto_app.html.twig');
return $this->render('@WallabagCore/Developer/howto_app.html.twig',
[
'wallabag_url' => $this->getParameter('domain_name'),
]);
}
}