mirror of
https://framagit.org/tykayn/date-poll-api
synced 2023-08-25 08:23:11 +02:00
update resp of poll display
This commit is contained in:
parent
747ebb9d2f
commit
9781c2be2c
@ -5,6 +5,15 @@ use Symfony\Component\Dotenv\Dotenv;
|
||||
use Symfony\Component\ErrorHandler\Debug;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
header( 'Access-Control-Allow-Origin: *' );
|
||||
header( "Access-Control-Allow-Headers: X-API-KEY, Origin, X-Requested-With, Content-Type, Accept, Access-Control-Request-Method" );
|
||||
header( "Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE" );
|
||||
header( "Allow: GET, POST, OPTIONS, PUT, DELETE" );
|
||||
$method = $_SERVER[ 'REQUEST_METHOD' ];
|
||||
if ( $method == "OPTIONS" ) {
|
||||
die();
|
||||
}
|
||||
|
||||
require dirname( __DIR__ ) . '/vendor/autoload.php';
|
||||
|
||||
( new Dotenv() )->bootEnv( dirname( __DIR__ ) . '/.env' );
|
||||
|
@ -251,12 +251,13 @@ class Poll {
|
||||
}
|
||||
|
||||
|
||||
return [
|
||||
$resp = [
|
||||
'title' => $this->getTitle(),
|
||||
'description' => $this->getDescription(),
|
||||
'created_at' => $this->getCreatedAt()->format( 'c' ),
|
||||
'expiracy_date' => $this->getExpiracyDate()->format( 'c' ),
|
||||
'votes_max' => $this->getVotesMax(),
|
||||
'custom_url' => $this->getCustomUrl(),
|
||||
'choices_max' => $this->getChoicesMax(),
|
||||
'kind' => $this->getKind(),
|
||||
'allowed_answers' => $this->getAllowedAnswers(),
|
||||
@ -274,6 +275,9 @@ class Poll {
|
||||
'stacks' => $displayedStackOfVotes,
|
||||
'comments' => $displayedComments,
|
||||
];
|
||||
|
||||
|
||||
return $resp;
|
||||
}
|
||||
|
||||
public function computeAnswers() {
|
||||
|
Loading…
Reference in New Issue
Block a user