mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
Compare commits
3 Commits
5ce36dabcd
...
0ba9617a23
Author | SHA1 | Date | |
---|---|---|---|
0ba9617a23 | |||
fcba0ae720 | |||
15445f0a9c |
3
.gitignore
vendored
3
.gitignore
vendored
@ -6,6 +6,9 @@
|
|||||||
/public/bundles/
|
/public/bundles/
|
||||||
/var/
|
/var/
|
||||||
/vendor/
|
/vendor/
|
||||||
|
node_modules
|
||||||
|
public/build
|
||||||
|
|
||||||
###< symfony/framework-bundle ###
|
###< symfony/framework-bundle ###
|
||||||
|
|
||||||
### IDE
|
### IDE
|
||||||
|
@ -6,11 +6,6 @@ use App\Controller\FramadateController;
|
|||||||
use App\Entity\Choice;
|
use App\Entity\Choice;
|
||||||
use App\Entity\Owner;
|
use App\Entity\Owner;
|
||||||
use App\Entity\Poll;
|
use App\Entity\Poll;
|
||||||
use FOS\RestBundle\Controller\Annotations\Delete;
|
|
||||||
use FOS\RestBundle\Controller\Annotations\Get;
|
|
||||||
use FOS\RestBundle\Controller\Annotations\Post;
|
|
||||||
use FOS\RestBundle\Controller\Annotations\Put;
|
|
||||||
use FOS\RestBundle\Controller\Annotations\Route;
|
|
||||||
use JMS\Serializer\Exception\RuntimeException;
|
use JMS\Serializer\Exception\RuntimeException;
|
||||||
use JMS\Serializer\SerializerBuilder;
|
use JMS\Serializer\SerializerBuilder;
|
||||||
use JMS\Serializer\SerializerInterface;
|
use JMS\Serializer\SerializerInterface;
|
||||||
@ -18,6 +13,13 @@ use Swift_Mailer;
|
|||||||
use Symfony\Component\HttpFoundation\JsonResponse;
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpFoundation\Response;
|
use Symfony\Component\HttpFoundation\Response;
|
||||||
|
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
|
||||||
|
|
||||||
|
use FOS\RestBundle\Controller\Annotations\Get;
|
||||||
|
use FOS\RestBundle\Controller\Annotations\Put;
|
||||||
|
use FOS\RestBundle\Controller\Annotations\Delete;
|
||||||
|
use FOS\RestBundle\Controller\Annotations\Post;
|
||||||
|
use FOS\RestBundle\Controller\Annotations\Route;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class DefaultController
|
* Class DefaultController
|
||||||
@ -315,7 +317,7 @@ class PollController extends FramadateController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check is a slug is already taken by a poll
|
* Checks if a slug is already taken by a poll
|
||||||
* @Get(
|
* @Get(
|
||||||
* path = "/slug/{slug}",
|
* path = "/slug/{slug}",
|
||||||
* name = "check_slug_is_unique",
|
* name = "check_slug_is_unique",
|
||||||
@ -349,7 +351,7 @@ class PollController extends FramadateController {
|
|||||||
return $this->json( [
|
return $this->json( [
|
||||||
'message' => ' yes this slug is available on this Framadate instance ',
|
'message' => ' yes this slug is available on this Framadate instance ',
|
||||||
'data' => [
|
'data' => [
|
||||||
'slug' => $slug,
|
'slug' => $customUrl,
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
404 );
|
404 );
|
||||||
|
Loading…
Reference in New Issue
Block a user