update resp of poll display

This commit is contained in:
tykayn 2021-04-28 15:05:20 +02:00 committed by Baptiste Lemoine
parent 747ebb9d2f
commit 9781c2be2c
2 changed files with 666 additions and 653 deletions

View File

@ -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' );

View File

@ -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() {