mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 10:23:44 +08:00
a914d3230b
Followup to 7d8974d02f
Co-authored-by: David Taylor <david@taylorhq.com>
43 lines
1.1 KiB
Handlebars
43 lines
1.1 KiB
Handlebars
<li>
|
|
<div class="col first status">
|
|
{{#if @event.redelivering}}
|
|
{{d-icon "arrows-rotate"}}
|
|
{{else}}
|
|
<span class={{this.statusColorClasses}}>{{@event.status}}</span>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="col event-id">{{@event.id}}</div>
|
|
|
|
<div class="col timestamp">{{this.createdAt}}</div>
|
|
|
|
<div class="col completion">{{this.completion}}</div>
|
|
|
|
<div class="col actions">
|
|
<DButton
|
|
@icon={{this.expandRequestIcon}}
|
|
@action={{this.toggleRequest}}
|
|
@label="admin.web_hooks.events.request"
|
|
/>
|
|
<DButton
|
|
@icon={{this.expandResponseIcon}}
|
|
@action={{this.toggleResponse}}
|
|
@label="admin.web_hooks.events.response"
|
|
/>
|
|
<DButton
|
|
@icon="arrows-rotate"
|
|
@action={{this.redeliver}}
|
|
@label="admin.web_hooks.events.redeliver"
|
|
/>
|
|
</div>
|
|
|
|
{{#if this.expandDetails}}
|
|
<div class="details">
|
|
<h3>{{i18n "admin.web_hooks.events.headers"}}</h3>
|
|
<pre><code>{{this.headers}}</code></pre>
|
|
|
|
<h3>{{this.bodyLabel}}</h3>
|
|
<pre><code>{{this.body}}</code></pre>
|
|
</div>
|
|
{{/if}}
|
|
</li> |