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