trying to implement database backend

This commit is contained in:
Jonas Heinrich 2020-10-31 12:10:02 +01:00
parent b5cd90df6f
commit e174e3d16a

View File

@ -3,13 +3,13 @@
namespace OCA\Radio\Controller;
use OCA\Radio\AppInfo\Application;
use OCA\Radio\Service\RadioService;
use OCA\Radio\Service\StationService;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http\DataResponse;
use OCP\IRequest;
class RadioController extends Controller {
/** @var RadioService */
class StationController extends Controller {
/** @var StationService */
private $service;
/** @var string */
@ -18,7 +18,7 @@ class RadioController extends Controller {
use Errors;
public function __construct(IRequest $request,
RadioService $service,
StationService $service,
$userId) {
parent::__construct(Application::APP_ID, $request);
$this->service = $service;