Aha! integration
Authentication
Supported authentication methods
Basic authentication
Select "Basic authentication" in the first step of integration wizard. Click "Next".
Provide valid host (URL to your Aha!), username and password.
Personal token
To proceed with this authentication type you need to obtain API token from Aha!. Steps below will instruct you how to do that.
Go to Personal page of your Aha! settings.
Then in left pane switch to Developer section.
Now switch to API keys tab and click Generate API Key button.
Give it some unique name and click Generate API Key button within that dialog.
Click Generate API key to create new token. Don't forget to copy it.
Now, when you've obtained a token, lets configure integration in Bugsee.
Start Bugsee integration wizard and select "Personal token" authentication type. Click "Next".
Provide valid host (URL to your Aha!) and paste generated token.
OAuth
Select "OAuth" in the first step of integration wizard. Click Next.
You will be presented with dialog asking you to authorize Bugsee. Click Authorize to allow Bugsee access your Aha!
Configuration
There are no any specific configuration steps for Aha!. Refer to configuration section for description about generic steps.
Custom recipes
Bugsee can accommodate all these customizations with the help of custom recipes. This section provides a few examples of using custom recipes specifically with Aha!. For basic introduction, refer to custom recipe documentation.
Setting tags field
By default Bugsee creates and updates Aha! ideas with Bugsee issue labels as Aha! tags. But labels list can be overridden inside your custom recipe. For example you can add some new label (Aha! tag) to existing ones:
function create(context) {
// ....
return {
// ...
labels: [...issue.labels, "My awesome tag"]
};
}
function update(context, changes) {
const result = {};
// ...
if (changes.labels) {
result.labels = [...changes.labels.to, "My awesome tag"];
}
return {
issue: {
custom: {}
},
changes: result
};
}