mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
bd87ee3e2a
refs https://github.com/TryGhost/Team/issues/1734 refs https://github.com/TryGhost/Team/issues/559 refs https://github.com/TryGhost/Ghost/issues/14101 - switches to newer modal patterns ready for later Ember upgrades
20 lines
831 B
Handlebars
20 lines
831 B
Handlebars
<div class="modal-content" data-test-modal="delete-integration">
|
|
<header class="modal-header">
|
|
<h1>Are you sure?</h1>
|
|
</header>
|
|
<button type="button" class="close" title="Close" {{on "click" @close}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
<div class="modal-body">
|
|
<p>
|
|
Deleting this integration will remove all webhooks and api keys associated with it.
|
|
</p>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" type="button" {{on "click" @close}}><span>Cancel</span></button>
|
|
<GhTaskButton
|
|
@buttonText="Delete Integration"
|
|
@successText="Deleted"
|
|
@task={{this.deleteIntegrationTask}}
|
|
@class="gh-btn gh-btn-red gh-btn-icon"
|
|
data-test-button="confirm" />
|
|
</div>
|
|
</div> |