mirror of https://github.com/pixelfed/pixelfed.git
Add AdminHashtag resource
This commit is contained in:
parent
29f2c50e2e
commit
f9341d0197
|
@ -0,0 +1,29 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Http\Resources;
|
||||||
|
|
||||||
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
|
|
||||||
|
class AdminHashtag extends JsonResource
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Transform the resource into an array.
|
||||||
|
*
|
||||||
|
* @param \Illuminate\Http\Request $request
|
||||||
|
* @return array|\Illuminate\Contracts\Support\Arrayable|\JsonSerializable
|
||||||
|
*/
|
||||||
|
public function toArray($request)
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'id' => $this->id,
|
||||||
|
'name' => $this->name,
|
||||||
|
'slug' => $this->slug,
|
||||||
|
'can_trend' => $this->can_trend === null ? true : (bool) $this->can_trend,
|
||||||
|
'can_search' => $this->can_search === null ? true : (bool) $this->can_search,
|
||||||
|
'is_nsfw' => (bool) $this->is_nsfw,
|
||||||
|
'is_banned' => (bool) $this->is_banned,
|
||||||
|
'cached_count' => $this->cached_count ?? 0,
|
||||||
|
'created_at' => $this->created_at
|
||||||
|
];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue