symphony-integration-commons
Version:
Common components for 3rd party developers build the user facing application for Symphony Integrations.
41 lines (38 loc) • 1.38 kB
JSX
/* eslint-disable global-require */
import React from 'react';
const Instructions = () => (
<div className='setup-instructions-content'>
<h2>Step 1</h2>
<p>Copy the URL so that you can use it later to configure the integration correctly.</p>
<figure>
<img src={require('./img/jira-admin-webhooks.png')} alt="Webhook configuration" />
</figure>
<h2>Step 2</h2>
<p>
In your JIRA account, click on <strong>System</strong> in the
<strong>Administration</strong> menu.
</p>
<figure>
<img src={require('./img/jira_settings_step1.png')} alt="Webhook configuration" />
</figure>
<h2>Step 3</h2>
<p>
Click on <strong>Webhooks</strong>, which is found in the sidebar under
<strong>Advanced</strong>.
</p>
<figure>
<img src={require('./img/jira_settings_step2.png')} alt="Webhook configuration" />
</figure>
<h2>Step 4</h2>
<p>
Click the <strong>Create a Webhook</strong> button to display the webhook creation form.
Choose a unique name and add the URL that you copied in step 1.
You can also configure which events will be posted to Symphony.
</p>
<figure>
<img src={require('./img/jira_settings_step3.png')} alt="Webhook configuration" />
</figure>
<p>Click the Create button when you are done.</p>
</div>
);
export default Instructions;