new database
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
<?php
|
||||
require_once "../../../bootstrap.php";
|
||||
require_once "../Admin/Admin.php";
|
||||
|
||||
use Backend\Models\Group;
|
||||
use Backend\Models\Vote;
|
||||
use \Illuminate\Support\Collection;
|
||||
|
||||
if(isAdmin()){
|
||||
if(isset($_GET['gameJamId'])) {
|
||||
if (isAdmin()) {
|
||||
if (isset($_GET['gameJamId'])) {
|
||||
$groups = Group::where('game_jam_id', $_GET['gameJamId'])->get();
|
||||
if($groups) {
|
||||
if ($groups) {
|
||||
$winningGroups = new Collection();
|
||||
$i = -1;
|
||||
foreach ($groups as $group) {
|
||||
@@ -27,16 +28,15 @@ if(isAdmin()){
|
||||
header("Access-Control-Allow-Headers: X-Requested-With, Content-Type, Accept");
|
||||
header('Content-Type: application/json;charset=UTF-8');
|
||||
echo json_encode(array('data' => $winningGroups->jsonSerialize()));
|
||||
}
|
||||
else{
|
||||
} else {
|
||||
http_response_code(400);
|
||||
echo json_encode(["message" => "game jam not found"]);
|
||||
}
|
||||
}else{
|
||||
} else {
|
||||
http_response_code(400);
|
||||
}
|
||||
|
||||
}else{
|
||||
} else {
|
||||
http_response_code(401);
|
||||
echo json_encode(["message" => "not admin"]);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user