mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-11 18:15:14 +00:00

- throw not found page error if no podcast in podcast controller - delete unnecessary unknownuseragents view
13 lines
307 B
PHP
13 lines
307 B
PHP
<?php namespace App\Controllers;
|
|
use CodeIgniter\Controller;
|
|
|
|
class UnknownUserAgents extends Controller
|
|
{
|
|
public function index($last_known_id = 0)
|
|
{
|
|
$model = new \App\Models\UnknownUserAgentsModel();
|
|
|
|
return $this->response->setJSON($model->getUserAgents($last_known_id));
|
|
}
|
|
}
|