@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/trello/custom-field/index.js~
packages/ari/trello/custom-field/index.jsModified+5−1
Index: package/packages/ari/trello/custom-field/index.js
===================================================================
--- package/packages/ari/trello/custom-field/index.js
+++ package/packages/ari/trello/custom-field/index.js
@@ -284,21 +284,25 @@
var trelloCustomFieldAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: TrelloCustomFieldAriResourceOwner,
resourceType: TrelloCustomFieldAriResourceType,
resourceIdSlug: "workspace/{workspaceId}/{customFieldId}",
resourceIdSegmentFormats: {
workspaceId: /[a-zA-Z0-9\-_.]*/,
+ // eslint-disable-line no-useless-escape
customFieldId: /[a-zA-Z0-9\-_.]*/
+ // eslint-disable-line no-useless-escape
}
};
// src/trello/custom-field/index.ts
var TrelloCustomFieldAri = class _TrelloCustomFieldAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._customFieldId = opts.resourceIdSegmentValues.customFieldId;
+ super(opts);
+ this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._customFieldId = opts.resourceIdSegmentValues.customFieldId;
}
get workspaceId() {
return this._workspaceId;
}