Browse Source

Merge branch 'develop' of https://gitea.laclic.fr/Laclic/CaracoleSkeleton into develop

feature/ticket
Fab 3 years ago
parent
commit
1ec461102a
2 changed files with 6 additions and 1 deletions
  1. +1
    -1
      config/packages/lc_sov.yaml
  2. +5
    -0
      src/Entity/Site/Page.php

+ 1
- 1
config/packages/lc_sov.yaml View File

@@ -1,3 +1,3 @@
# see https://symfony.com/doc/current/reference/configuration/framework.html
lc_sov:
homepage_route: 'home'
homepage_route: 'app_homepage'

+ 5
- 0
src/Entity/Site/Page.php View File

@@ -40,6 +40,11 @@ class Page extends PageModel
$this->gallery = new ArrayCollection();
}

public function __toString()
{
return $this->getTitle() ;
}

public function getId(): ?int
{
return $this->id;

Loading…
Cancel
Save