mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix FLEXIAPI-153 Add phone and email to be changed in the Activity panel
This commit is contained in:
parent
668c79bc12
commit
f6ac67b8b1
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue