mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
Fix FLEXIAPI-391 Add missing account view attribute in the actions.delete view
This commit is contained in:
parent
6240f81f14
commit
fbf47fc9c9
2 changed files with 5 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ v2.1
|
||||||
- Fix FLEXIAPI-382 Package for Rocky 10
|
- Fix FLEXIAPI-382 Package for Rocky 10
|
||||||
- Fix FLEXIAPI-384 Allow carddav_user_credentials to be set and use the correct host -> domain parameter in the endpoints
|
- Fix FLEXIAPI-384 Allow carddav_user_credentials to be set and use the correct host -> domain parameter in the endpoints
|
||||||
- Fix FLEXIAPI-385 Use domains and not hosts in the EmailServer endpoints as defined in the API documentation
|
- Fix FLEXIAPI-385 Use domains and not hosts in the EmailServer endpoints as defined in the API documentation
|
||||||
|
- Fix FLEXIAPI-391 Add missing account view attribute in the actions.delete view
|
||||||
|
|
||||||
v2.0
|
v2.0
|
||||||
----
|
----
|
||||||
|
|
@ -88,6 +89,9 @@ v2.0
|
||||||
- Fix FLEXIAPI-364 Fix a faulty redirection in the ExternalAccount controller
|
- Fix FLEXIAPI-364 Fix a faulty redirection in the ExternalAccount controller
|
||||||
- Fix FLEXIAPI-361 Prepare the 2.0 release
|
- Fix FLEXIAPI-361 Prepare the 2.0 release
|
||||||
- Fix FLEXIAPI-372 Remove SESSION_DRIVER and CACHE_DRIVER and enforce them to file
|
- Fix FLEXIAPI-372 Remove SESSION_DRIVER and CACHE_DRIVER and enforce them to file
|
||||||
|
- Fix FLEXIAPI-375 Fix VcardsStorage table UUID size, recover the UUID from the stored vCard
|
||||||
|
- Fix FLEXIAPI-378 Return a valid JSON containing the vCard and not the raw vCard in VcardsStorage controller
|
||||||
|
- Fix FLEXIAPI-385 Use domains and not hosts in the EmailServer endpoints as defined in the API documentation
|
||||||
|
|
||||||
v1.6
|
v1.6
|
||||||
----
|
----
|
||||||
|
|
|
||||||
|
|
@ -99,6 +99,7 @@ class ActionController extends Controller
|
||||||
$account = Account::findOrFail($accountId);
|
$account = Account::findOrFail($accountId);
|
||||||
|
|
||||||
return view('admin.account.action.delete', [
|
return view('admin.account.action.delete', [
|
||||||
|
'account' => $account,
|
||||||
'action' => $account->actions()
|
'action' => $account->actions()
|
||||||
->where('id', $actionId)
|
->where('id', $actionId)
|
||||||
->firstOrFail()
|
->firstOrFail()
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue