slug codes and null content

This commit is contained in:
Baptiste Lemoine 2020-04-21 18:21:03 +02:00
parent 2c609e2f09
commit 124439ee3c
1 changed files with 4 additions and 4 deletions

View File

@ -331,8 +331,8 @@ class PollController extends FramadateController {
if ( $found ) {
if ( ! $elaborated_message_version ) {
return $this->json( true,
200 );
return $this->json( 'no-content',
204 );
}
// we should use an other slug
@ -342,10 +342,10 @@ class PollController extends FramadateController {
'slug' => $slug,
],
],
200 );
204 );
}
if ( ! $elaborated_message_version ) {
return $this->json( false,
return $this->json( 'NOT_found',
404 );
}