@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/jira/resolution/index.js~
packages/ari/jira/resolution/index.jsModified+1−4
Index: package/packages/ari/jira/resolution/index.js
===================================================================
--- package/packages/ari/jira/resolution/index.js
+++ package/packages/ari/jira/resolution/index.js
@@ -284,25 +284,22 @@
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;
}