mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 00:04:50 +00:00
Update AdminModeratedProfileResource
This commit is contained in:
parent
6fc2dd07d4
commit
dcddc72c86
1 changed files with 3 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
||||||
|
|
||||||
namespace App\Http\Resources\Admin;
|
namespace App\Http\Resources\Admin;
|
||||||
|
|
||||||
|
use App\Profile;
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Http\Resources\Json\JsonResource;
|
use Illuminate\Http\Resources\Json\JsonResource;
|
||||||
use App\Profile;
|
|
||||||
|
|
||||||
class AdminModeratedProfileResource extends JsonResource
|
class AdminModeratedProfileResource extends JsonResource
|
||||||
{
|
{
|
||||||
|
@ -17,11 +17,12 @@ class AdminModeratedProfileResource extends JsonResource
|
||||||
{
|
{
|
||||||
$profileObj = [];
|
$profileObj = [];
|
||||||
$profile = Profile::withTrashed()->find($this->profile_id);
|
$profile = Profile::withTrashed()->find($this->profile_id);
|
||||||
if($profile) {
|
if ($profile) {
|
||||||
$profileObj = [
|
$profileObj = [
|
||||||
'username' => $profile->username,
|
'username' => $profile->username,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
return [
|
return [
|
||||||
'id' => $this->id,
|
'id' => $this->id,
|
||||||
'domain' => $this->domain,
|
'domain' => $this->domain,
|
||||||
|
|
Loading…
Reference in a new issue