Pony.fm/app/controllers/Api/Web/FavouritesController.php

12 lines
294 B
PHP
Raw Normal View History

2013-08-01 10:57:08 +02:00
<?php
namespace Api\Web;
use Commands\ToggleFavouriteCommand;
use Illuminate\Support\Facades\Input;
class FavouritesController extends \ApiControllerBase {
public function postToggle() {
return $this->execute(new ToggleFavouriteCommand(Input::get('type'), Input::get('id')));
}
}