@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/trello/sticker/index.js~
packages/ari/trello/sticker/index.jsModified+4−1
Index: package/packages/ari/trello/sticker/index.js
===================================================================
--- package/packages/ari/trello/sticker/index.js
+++ package/packages/ari/trello/sticker/index.js
@@ -284,20 +284,23 @@
var trelloStickerAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: TrelloStickerAriResourceOwner,
resourceType: TrelloStickerAriResourceType,
resourceIdSlug: "{customStickerId}",
resourceIdSegmentFormats: {
customStickerId: /[a-zA-Z0-9\-_.]*/
+ // eslint-disable-line no-useless-escape
}
};
// src/trello/sticker/index.ts
var TrelloStickerAri = class _TrelloStickerAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._customStickerId = opts.resourceIdSegmentValues.customStickerId;
+ super(opts);
+ this._customStickerId = opts.resourceIdSegmentValues.customStickerId;
}
get customStickerId() {
return this._customStickerId;
}