Version 5.1 - All the GraphQL #32

Closed
timw4mail wants to merge 1160 commits from develop into master
3 changed files with 18 additions and 3 deletions
Showing only changes of commit b38d5811a4 - Show all commits

View File

@ -19,8 +19,7 @@
<td><?= $escape->html($attributes['waifuOrHusbando']) ?></td>
<td>
<?php
$dataKey = $relationships['waifu']['id'];
$character = $included['characters'][$dataKey]['attributes'];
$character = $relationships['waifu']['attributes'];
echo $helper->a(
$url->generate('character', ['slug' => $character['slug']]),
$character['name']

View File

@ -182,7 +182,18 @@ class JsonAPI {
{
if (array_key_exists('data', $block) && is_array($block['data']) && ! empty($block['data']))
{
$output[$key] = $block['data'];
$output[$key] = [];
if (array_key_exists('type', $block['data']) && array_key_exists('id', $block['data']))
{
$output[$key] = $includes[$block['data']['type']][$block['data']['id']];
}
else
{
foreach($block['data'] as $dBlock)
{
$output[$key][] = $includes[$dBlock['type']][$dBlock['id']];
}
}
}
}

View File

@ -71,6 +71,11 @@ class Controller {
$this->baseData['message'] = $this->session->getFlash('message');
}
/**
* Show the user profile page
*
* @return void
*/
public function me()
{
$username = $this->config->get(['kitsu_username']);