mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-29 16:59:21 +00:00
Fix #46 Rely on the external account identifier and not the non-existing full identifier
Bump version
This commit is contained in:
parent
699b015950
commit
e124dedfa2
3 changed files with 3 additions and 2 deletions
|
|
@ -228,7 +228,7 @@ class ProvisioningController extends Controller
|
|||
$section = $dom->createElement('section');
|
||||
$section->setAttribute('name', 'proxy_' . $proxyConfigIndex);
|
||||
|
||||
$entry = $dom->createElement('entry', $externalAccount->fullIdentifier);
|
||||
$entry = $dom->createElement('entry', '<sip:' . $externalAccount->identifier . '>');
|
||||
$entry->setAttribute('name', 'reg_identity');
|
||||
$section->appendChild($entry);
|
||||
|
||||
|
|
|
|||
|
|
@ -76,6 +76,7 @@ class ExternalAccountTest extends TestCase
|
|||
->get($this->provisioningRoute)
|
||||
->assertStatus(200)
|
||||
->assertHeader('Content-Type', 'application/xml')
|
||||
->assertSee($externalAccount->identifier)
|
||||
->assertSee('ha1')
|
||||
->assertSee('idkey')
|
||||
->assertSee('depends_on');
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@
|
|||
#%define _datadir %{_datarootdir}
|
||||
#%define _docdir %{_datadir}/doc
|
||||
|
||||
%define build_number 155
|
||||
%define build_number 156
|
||||
%define var_dir /var/opt/belledonne-communications
|
||||
%define opt_dir /opt/belledonne-communications/share/flexisip-account-manager
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue