mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
34 lines
754 B
Handlebars
34 lines
754 B
Handlebars
<LinkTo @route="adminWebHooks" class="go-back">
|
|
{{d-icon "arrow-left"}}
|
|
{{i18n "admin.web_hooks.go_back"}}
|
|
</LinkTo>
|
|
|
|
<div class="admin-webhooks__summary">
|
|
<h1>
|
|
{{this.model.payload_url}}
|
|
|
|
<DButton
|
|
@action={{this.edit}}
|
|
@icon="far-edit"
|
|
title={{i18n "admin.web_hooks.edit"}}
|
|
class="btn no-text admin-webhooks__edit-button"
|
|
/>
|
|
|
|
<DButton
|
|
@action={{this.destroy}}
|
|
@icon="times"
|
|
@title="delete"
|
|
class="destroy btn-danger admin-webhooks__delete-button"
|
|
/>
|
|
</h1>
|
|
|
|
<div>
|
|
<span class="admin-webhooks__description-label">
|
|
{{i18n "admin.web_hooks.description_label"}}:
|
|
</span>
|
|
|
|
{{this.model.description}}
|
|
</div>
|
|
</div>
|
|
|
|
<WebhookEvents @webhookId={{this.model.id}} /> |