mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
101 lines
3.8 KiB
Handlebars
101 lines
3.8 KiB
Handlebars
{{#link-to "adminWebHooks" class="go-back"}}
|
|
{{d-icon "arrow-left"}}
|
|
{{i18n "admin.web_hooks.go_back"}}
|
|
{{/link-to}}
|
|
|
|
<div class="web-hook-container">
|
|
<p>{{i18n "admin.web_hooks.detailed_instruction"}}</p>
|
|
<form class="web-hook form-horizontal">
|
|
<div>
|
|
<label for="payload-url">{{i18n "admin.web_hooks.payload_url"}}</label>
|
|
{{text-field name="payload-url" value=model.payload_url placeholderKey="admin.web_hooks.payload_url_placeholder"}}
|
|
{{input-tip validation=urlValidation}}
|
|
</div>
|
|
|
|
<div>
|
|
<label for="content-type">{{i18n "admin.web_hooks.content_type"}}</label>
|
|
{{combo-box
|
|
content=contentTypes
|
|
name="content-type"
|
|
value=model.content_type
|
|
onChange=(mut model.content_type)
|
|
}}
|
|
</div>
|
|
|
|
<div>
|
|
<label for="secret">{{i18n "admin.web_hooks.secret"}}</label>
|
|
{{text-field name="secret" value=model.secret placeholderKey="admin.web_hooks.secret_placeholder"}}
|
|
{{input-tip validation=secretValidation}}
|
|
</div>
|
|
|
|
<div class="cbox10">
|
|
<label>{{i18n "admin.web_hooks.event_chooser"}}</label>
|
|
<div>
|
|
{{radio-button class="subscription-choice" name="subscription-choice" value="individual" selection=model.webHookType}}
|
|
{{i18n "admin.web_hooks.individual_event"}}
|
|
{{input-tip validation=eventTypeValidation}}
|
|
</div>
|
|
{{#unless model.wildcard_web_hook}}
|
|
<div class="event-selector">
|
|
{{#each eventTypes as |type|}}
|
|
{{admin-web-hook-event-chooser type=type model=model.web_hook_event_types}}
|
|
{{/each}}
|
|
</div>
|
|
{{/unless}}
|
|
<div>
|
|
{{radio-button class="subscription-choice" name="subscription-choice" value="wildcard" selection=model.webHookType}}
|
|
{{i18n "admin.web_hooks.wildcard_event"}}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="filters">
|
|
<div class="filter">
|
|
<label>{{d-icon "circle" class="tracking"}}{{i18n "admin.web_hooks.categories_filter"}}</label>
|
|
{{category-selector
|
|
categories=model.categories
|
|
onChange=(mut model.categories)
|
|
}}
|
|
<div class="instructions">{{i18n "admin.web_hooks.categories_filter_instructions"}}</div>
|
|
</div>
|
|
{{#if showTagsFilter}}
|
|
<div class="filter">
|
|
<label>{{d-icon "circle" class="tracking"}}{{i18n "admin.web_hooks.tags_filter"}}</label>
|
|
{{tag-chooser tags=model.tag_names everyTag=true excludeSynonyms=true}}
|
|
<div class="instructions">{{i18n "admin.web_hooks.tags_filter_instructions"}}</div>
|
|
</div>
|
|
{{/if}}
|
|
<div class="filter">
|
|
<label>{{d-icon "circle" class="tracking"}}{{i18n "admin.web_hooks.groups_filter"}}</label>
|
|
{{group-selector groupNames=model.groupsFilterInName groupFinder=model.groupFinder}}
|
|
<div class="instructions">{{i18n "admin.web_hooks.groups_filter_instructions"}}</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{plugin-outlet name="web-hook-fields" args=(hash model=model)}}
|
|
|
|
<div>
|
|
{{input type="checkbox" name="verify_certificate" checked=model.verify_certificate}} {{i18n "admin.web_hooks.verify_certificate"}}
|
|
</div>
|
|
<div>
|
|
<div>
|
|
{{input type="checkbox" name="active" checked=model.active}} {{i18n "admin.web_hooks.active"}}
|
|
</div>
|
|
{{#if model.active}}
|
|
<div class="instructions">{{i18n "admin.web_hooks.active_notice"}}</div>
|
|
{{/if}}
|
|
</div>
|
|
</form>
|
|
|
|
<div class="controls">
|
|
{{d-button class="btn-default" translatedLabel=saveButtonText action=(action "save") disabled=saveButtonDisabled}}
|
|
|
|
{{#unless model.isNew}}
|
|
{{d-button class="btn-danger" label="admin.web_hooks.destroy" action=(action "destroy")}}
|
|
{{#link-to "adminWebHooks.showEvents" model.id class="btn"}}
|
|
{{i18n "admin.web_hooks.events.go_events"}}
|
|
{{/link-to}}
|
|
{{/unless}}
|
|
<span class="saving">{{savingStatus}}</span>
|
|
</div>
|
|
</div>
|