@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/trello/planner/index.js~
packages/ari/trello/planner/index.jsModified+1−5
Index: package/packages/ari/trello/planner/index.js
===================================================================
--- package/packages/ari/trello/planner/index.js
+++ package/packages/ari/trello/planner/index.js
@@ -284,25 +284,21 @@
var trelloPlannerAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: TrelloPlannerAriResourceOwner,
resourceType: TrelloPlannerAriResourceType,
resourceIdSlug: "workspace/{workspaceId}/{plannerId}",
resourceIdSegmentFormats: {
workspaceId: /[a-zA-Z0-9\-_.]*/,
- // eslint-disable-line no-useless-escape
plannerId: /[a-zA-Z0-9\-_.]*/
- // eslint-disable-line no-useless-escape
}
};
// src/trello/planner/index.ts
var TrelloPlannerAri = class _TrelloPlannerAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._plannerId = opts.resourceIdSegmentValues.plannerId;
+ super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._plannerId = opts.resourceIdSegmentValues.plannerId;
}
get workspaceId() {
return this._workspaceId;
}