mirror of https://github.com/pixelfed/pixelfed.git
21 lines
422 B
PHP
21 lines
422 B
PHP
<?php
|
|
|
|
namespace App\Http\Resources;
|
|
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Http\Resources\Json\JsonResource;
|
|
use App\Services\StatusService;
|
|
|
|
class ImportStatus extends JsonResource
|
|
{
|
|
/**
|
|
* Transform the resource into an array.
|
|
*
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function toArray(Request $request): array
|
|
{
|
|
return StatusService::get($this->status_id, false);
|
|
}
|
|
}
|