feat: add prefixed route
All checks were successful
JS Unit Tests / test (pull_request) Successful in 19s
Build Test / build (pull_request) Successful in 21s
PHP Unit Tests / test (pull_request) Successful in 49s

Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
2026-03-06 22:48:16 -05:00
parent a533d0dd89
commit ce5c5b3746
4 changed files with 79 additions and 10 deletions

View File

@@ -36,17 +36,17 @@ class SessionIdentity
public function mailAddress(): ?string
{
return $this->identityData?->getEmail();
return $this->identityData?->getIdentity();
}
public function nameFirst(): ?string
{
return $this->identityData?->getFirstName();
return null;
}
public function nameLast(): ?string
{
return $this->identityData?->getLastName();
return null;
}
public function permissions(): array