mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
e243b583f6
closes https://www.notion.so/ghost/Promote-Stripe-Guide-in-admin-a5740ce2afd7413bae7e1245cfc4d9ce - Added a guide to Ghost Resources after successful connection with Stripe - Updated modal layout - Fixed bug where template condition was listening to wrong task descriptor and rendering a flash in between running and finished state
17 lines
661 B
Handlebars
17 lines
661 B
Handlebars
<header class="modal-header" data-test-modal="webhook-form" {{will-destroy this.reset}}>
|
|
<h1 data-test-text="title">Connect with Stripe</h1>
|
|
</header>
|
|
<button class="close" href title="Close" type="button" {{on "click" this.closeModal}} {{on "mouseDown" (optional this.noop)}}>
|
|
{{svg-jar "close"}}
|
|
</button>
|
|
|
|
<form>
|
|
<div class="modal-body" {{did-insert this.updateSuccessModifier}}>
|
|
<Settings::Members::StripeSettingsForm
|
|
@setStripeConnectIntegrationTokenSetting={{this.setStripeConnectIntegrationTokenSetting}}
|
|
@onConnected={{this.updateSuccessModifier}}
|
|
@onDisconnected={{this.updateSuccessModifier}}
|
|
/>
|
|
</div>
|
|
</form>
|