Added missing sipgate config params.

This commit is contained in:
Martin Edenhofer 2016-11-16 14:17:21 +01:00
parent 7ddc6da7b8
commit 5fcc05d543
2 changed files with 25 additions and 0 deletions

View file

@ -6,6 +6,9 @@ class Index extends App.ControllerIntegrationBase
['This service shows you contacts of incoming calls and a caller list in realtime.'] ['This service shows you contacts of incoming calls and a caller list in realtime.']
['Also caller id of outbound calls can be changed.'] ['Also caller id of outbound calls can be changed.']
] ]
events:
'click .js-select': 'selectAll'
'change .js-switch input': 'switch'
render: => render: =>
super super

View file

@ -1,5 +1,27 @@
<form> <form>
<h2>sipgate.io <%- @T('Settings') %></h2>
<p><%- @T('You need to configure the Zammad endpoints in the Sipgate web interface') %>:<p>
<div class="settings-entry">
<table class="settings-list" style="width: 100%;">
<thead>
<tr>
<th width="20%"><%- @T('Type') %>
<th width="80%"><%- @T('URL') %>
</thead>
<tbody>
<tr>
<td class="settings-list-row-control"><%- @T('Inbound') %>
<td class="settings-list-control-cell"><input type="url" class="form-control form-control--small js-select" readonly value="<%- @C('http_type') %>://<%- @C('fqdn') %>/api/v1/sipgate/in">
<tr>
<td class="settings-list-row-control"><%- @T('Outbound') %>
<td class="settings-list-control-cell"><input type="url" class="form-control form-control--small js-select" readonly value="<%- @C('http_type') %>://<%- @C('fqdn') %>/api/v1/sipgate/out">
</tbody>
</table>
</div>
<h2><%- @T('Inbound') %></h2> <h2><%- @T('Inbound') %></h2>
<p><%- @T('Blocked caller ids based on sender caller id.') %> <p><%- @T('Blocked caller ids based on sender caller id.') %>