mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-16 04:02:15 +01:00
Added member and invitation endpoints
This commit is contained in:
18
app/Http/Resources/V1/Invitation/InvitationCollection.php
Normal file
18
app/Http/Resources/V1/Invitation/InvitationCollection.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Http\Resources\V1\Invitation;
|
||||
|
||||
use App\Http\Resources\PaginatedResourceCollection;
|
||||
use Illuminate\Http\Resources\Json\ResourceCollection;
|
||||
|
||||
class InvitationCollection extends ResourceCollection implements PaginatedResourceCollection
|
||||
{
|
||||
/**
|
||||
* The resource that this resource collects.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $collects = InvitationResource::class;
|
||||
}
|
||||
32
app/Http/Resources/V1/Invitation/InvitationResource.php
Normal file
32
app/Http/Resources/V1/Invitation/InvitationResource.php
Normal file
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Http\Resources\V1\Invitation;
|
||||
|
||||
use App\Http\Resources\V1\BaseResource;
|
||||
use App\Models\OrganizationInvitation;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
/**
|
||||
* @property OrganizationInvitation $resource
|
||||
*/
|
||||
class InvitationResource extends BaseResource
|
||||
{
|
||||
/**
|
||||
* Transform the resource into an array.
|
||||
*
|
||||
* @return array<string, string|bool|int|null|array<string>>
|
||||
*/
|
||||
public function toArray(Request $request): array
|
||||
{
|
||||
return [
|
||||
/** @var string $id ID of the invitation */
|
||||
'id' => $this->resource->id,
|
||||
/** @var string $email Email */
|
||||
'user_id' => $this->resource->email,
|
||||
/** @var string $role Role */
|
||||
'name' => $this->resource->role,
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user