Fix FLEXIAPI-153 Add phone and email to be changed in the Activity panel

This commit is contained in:
Timothée Jaussoin 2024-03-20 11:24:50 +01:00
parent 668c79bc12
commit f6ac67b8b1
2 changed files with 3 additions and 2 deletions

View file

@ -2,6 +2,7 @@
v1.5
----
- Fix FLEXIAPI-153 Add phone and email to be changed in the Activity panel
- Fix FLEXIAPI-151 Migrate to hCaptcha
- Fix FLEXIAPI-150 Use the same account_id parameter for both API and Web routes
- Fix FLEXIAPI-148 Reuse AccountService in the POST /api/accounts admin endpoint

View file

@ -56,7 +56,7 @@
<tbody>
@foreach ($account->phoneChangeCodes as $phoneChangeCode)
<tr @if ($phoneChangeCode->consumed()) class="disabled crossed" @endif>
<td>****</td>
<td>{{ $phoneChangeCode->phone }}<td>
<td>
{{ $phoneChangeCode->created_at }}
</td>
@ -85,7 +85,7 @@
<tbody>
@foreach ($account->emailChangeCodes as $emailChangeCode)
<tr @if ($emailChangeCode->consumed()) class="disabled crossed" @endif>
<td>****</td>
<td>{{ $emailChangeCode->email }}</td>
<td>
{{ $emailChangeCode->created_at }}
</td>