webhooks.html
48 lines
| 2.5 KiB
| text/html
|
HtmlLexer
r0 | <ng-include src="'templates/loader.html'" ng-if="integrations.loading.application || integration.loading.integration"></ng-include> | |||
<div class="panel panel-default" ng-show="!integrations.loading.application && !integration.loading.integration"> | ||||
<div class="panel-heading" ng-include="'templates/applications/breadcrumbs.html'"></div> | ||||
<div class="panel-body"> | ||||
<h1>Webhooks Integration</h1> | ||||
<form name="integration.integrationForm" ng-submit="integration.configureIntegration()" class="form-horizontal"> | ||||
<div class="form-group" id="row-reports_webhook"> | ||||
<label class="control-label col-sm-3 col-lg-2"> | ||||
Reports webhook <span class="required">*</span> | ||||
</label> | ||||
<div class="col-sm-8 col-lg-9"> | ||||
<data-form-errors errors="integration.integrationForm.ae_validation.reports_webhook"></data-form-errors> | ||||
<input class="form-control" id="reports_webhook" name="reports_webhook" type="text" ng-model="integration.config.reports_webhook"> | ||||
</div> | ||||
</div> | ||||
<div class="form-group" id="row-alerts_webhook"> | ||||
<label class="control-label col-sm-3 col-lg-2"> | ||||
Alerts webhook <span class="required">*</span> | ||||
</label> | ||||
<div class="col-sm-8 col-lg-9"> | ||||
<data-form-errors errors="integration.integrationForm.ae_validation.alerts_webhook"></data-form-errors> | ||||
<input class="form-control StringField None" id="alerts_webhook" name="alerts_webhook" type="text" ng-model="integration.config.alerts_webhook"> | ||||
</div> | ||||
</div> | ||||
<div class="form-group" id="row-submit"> | ||||
<label class="control-label col-sm-3 col-lg-2"></label> | ||||
<div class="col-sm-8 col-lg-9"> | ||||
<input class="form-control btn btn-primary" id="submit" name="submit" type="submit" value="Setup webhooks"> | ||||
<span class="dropdown" data-uib-dropdown on-toggle="toggled(open)"> | ||||
<a class="btn btn-danger" data-uib-dropdown-toggle><span class="fa fa-trash-o"></span> Remove Integration</a> | ||||
<ul class="dropdown-menu"> | ||||
<li><a>No</a></li> | ||||
<li><a ng-click="integration.removeIntegration()">Yes</a></li> | ||||
</ul> | ||||
</span> | ||||
</div> | ||||
</div> | ||||
</form> | ||||
</div> | ||||
</div> | ||||