mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
f92c62b59a
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 - migrated Zapier controller to native class syntax - fixed regeneration confirmation text not being visible on Zapier screen
29 lines
1.3 KiB
Handlebars
29 lines
1.3 KiB
Handlebars
<div class="modal-content" data-test-modal="regenerate-key">
|
|
<header class="modal-header">
|
|
<h1>Regenerate {{capitalize @data.apiKey.type}} API Key</h1>
|
|
</header>
|
|
<button type="button" class="close" title="Close" {{on "click" (fn @close null)}}>{{svg-jar "close"}}<span class="hidden">Close</span></button>
|
|
|
|
<div class="modal-body">
|
|
<p>
|
|
{{#if (eq @data.internalIntegration "zapier")}}
|
|
You will need to locate the Ghost App within your Zapier account and click on "Reconnect" to enter the new Admin API Key.
|
|
{{else}}
|
|
You can regenerate <strong>{{capitalize @data.apiKey.type}} API Key</strong> any time, but any scripts or applications using it will need to be updated.
|
|
{{/if}}
|
|
</p>
|
|
{{#if this.errorMessage}}
|
|
<p class='red'> {{this.errorMessage}}</p>
|
|
{{/if}}
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button class="gh-btn" type="button" {{on "click" (fn @close null)}}><span>Cancel</span></button>
|
|
<GhTaskButton
|
|
@buttonText="Regenerate {{capitalize @data.apiKey.type}} API Key"
|
|
@successText="Regenerated"
|
|
@task={{this.regenerateKeyTask}}
|
|
@class="gh-btn gh-btn-icon gh-btn-red"
|
|
/>
|
|
</div>
|
|
</div> |