up slug path

This commit is contained in:
Baptiste Lemoine 2020-04-21 18:03:18 +02:00
parent 2836ccb137
commit ed59c30961
1 changed files with 2 additions and 2 deletions

View File

@ -320,13 +320,13 @@ class PollController extends FramadateController {
/**
* Check is a slug is already taken by a poll
* @Get(
* path = "/poll/slug/{slug}",
* path = "/slug/{slug}",
* name = "check_slug_is_unique",
* )
*/
public function checkSlugIsUniqueAction( string $slug ) {
$emPoll = $this->getDoctrine()->getRepository( Poll::class );
$found = $emPoll->findOneBySlug( $slug );
$found = $emPoll->findOneByCustomUrl( $slug );
if ( $found ) {
// we should not find an other poll
return $this->json( [