Pony.fm/app/Http/Controllers/Api/Web/FollowController.php

14 lines
302 B
PHP
Raw Normal View History

2015-08-31 16:30:02 +02:00
<?php
namespace Api\Web;
use App\Commands\ToggleFollowingCommand;
use Illuminate\Support\Facades\Input;
class FollowController extends \ApiControllerBase
{
public function postToggle()
{
return $this->execute(new ToggleFollowingCommand(Input::get('type'), Input::get('id')));
}
}