mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-31 09:59:23 +00:00
Check the registration and authentication status and inject this variable once the email is validated or the account authenticated Bump the package number Fix #8
12 lines
419 B
PHP
12 lines
419 B
PHP
@if ($account)
|
|
<script type="text/javascript">
|
|
var account_infos = {
|
|
sip: '{{ $account->identifier }}',
|
|
username: '{{ $account->username }}',
|
|
@if (!empty(config('app.proxy_registrar_address')))
|
|
registrar_address: '{{ config('app.proxy_registrar_address') }}',
|
|
@endif
|
|
domain: '{{ $account->domain }}'
|
|
}
|
|
</script>
|
|
@endif
|