add invitations tab to members page

This commit is contained in:
Gregor Vostrak
2024-04-15 23:45:27 +02:00
parent c30763d718
commit e4bf56d55d
11 changed files with 165 additions and 14 deletions

View File

@@ -24,9 +24,9 @@ class InvitationResource extends BaseResource
/** @var string $id ID of the invitation */
'id' => $this->resource->id,
/** @var string $email Email */
'user_id' => $this->resource->email,
'email' => $this->resource->email,
/** @var string $role Role */
'name' => $this->resource->role,
'role' => $this->resource->role,
];
}
}