Version 5.1 - All the GraphQL #32
@ -205,7 +205,8 @@ class Anime extends BaseController {
|
|||||||
*/
|
*/
|
||||||
public function search()
|
public function search()
|
||||||
{
|
{
|
||||||
$query = $this->request->query->get('query');
|
$queryParams = $this->request->getQueryParams();
|
||||||
|
$query = $queryParams['query'];
|
||||||
$this->outputJSON($this->model->search($query));
|
$this->outputJSON($this->model->search($query));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +76,8 @@ class Collection extends BaseController {
|
|||||||
*/
|
*/
|
||||||
public function search()
|
public function search()
|
||||||
{
|
{
|
||||||
$query = $this->request->query->get('query');
|
$queryParams = $this->request->getQueryParams();
|
||||||
|
$query = $queryParams['query'];
|
||||||
$this->outputJSON($this->anime_model->search($query));
|
$this->outputJSON($this->anime_model->search($query));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user