mirror of
https://github.com/koel/koel
synced 2025-01-04 08:48:48 +00:00
13 lines
316 B
PHP
13 lines
316 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Interaction;
|
|
|
|
use App\Http\Requests\API\SongLikeRequest;
|
|
|
|
class LikeController extends Controller
|
|
{
|
|
public function store(SongLikeRequest $request)
|
|
{
|
|
return response()->json($this->interactionService->toggleLike($request->song, $this->currentUser));
|
|
}
|
|
}
|