mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-04-17 19:58:27 +00:00
12 lines
427 B
PHP
12 lines
427 B
PHP
@if ($account)
|
|
<script type="text/javascript">
|
|
var account_infos = {
|
|
sip: '{{ $account->identifier }}',
|
|
username: '{{ $account->username }}',
|
|
@if (!empty(space()?->account_proxy_registrar_address))
|
|
registrar_address: '{{ space()?->account_proxy_registrar_address }}',
|
|
@endif
|
|
domain: '{{ $account->domain }}'
|
|
}
|
|
</script>
|
|
@endif
|