@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/jira/resolution/index.js~
packages/ari/jira/resolution/index.jsModified+4−1
Index: package/packages/ari/jira/resolution/index.js
===================================================================
--- package/packages/ari/jira/resolution/index.js
+++ package/packages/ari/jira/resolution/index.js
@@ -284,22 +284,25 @@
var jiraResolutionAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^[a-zA-Z0-9_\\-.]{1,255}$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: JiraResolutionAriResourceOwner,
resourceType: JiraResolutionAriResourceType,
resourceIdSlug: "activation/{activationId}/{resolutionId}",
resourceIdSegmentFormats: {
activationId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
resolutionId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+ // eslint-disable-line no-useless-escape
}
};
// src/jira/resolution/index.ts
var JiraResolutionAri = class _JiraResolutionAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._siteId = opts.cloudId || "", this._activationId = opts.resourceIdSegmentValues.activationId, this._resolutionId = opts.resourceIdSegmentValues.resolutionId;
+ super(opts);
+ this._siteId = opts.cloudId || "", this._activationId = opts.resourceIdSegmentValues.activationId, this._resolutionId = opts.resourceIdSegmentValues.resolutionId;
}
get siteId() {
return this._siteId;
}