mirror of
https://github.com/koel/koel
synced 2024-12-04 09:49:23 +00:00
23 lines
650 B
PHP
23 lines
650 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\API\Interaction;
|
|
|
|
use App\Http\Requests\API\BatchInteractionRequest;
|
|
use Illuminate\Http\Response;
|
|
|
|
class BatchLikeController extends Controller
|
|
{
|
|
public function store(BatchInteractionRequest $request)
|
|
{
|
|
$interactions = $this->interactionService->batchLike((array) $request->songs, $this->currentUser);
|
|
|
|
return response()->json($interactions);
|
|
}
|
|
|
|
public function destroy(BatchInteractionRequest $request)
|
|
{
|
|
$this->interactionService->batchUnlike((array) $request->songs, $this->currentUser);
|
|
|
|
return response()->json(null, Response::HTTP_NO_CONTENT);
|
|
}
|
|
}
|