@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/townsquare/comment/index.js~
packages/ari/townsquare/comment/index.jsModified+4−1
Index: package/packages/ari/townsquare/comment/index.js
===================================================================
--- package/packages/ari/townsquare/comment/index.js
+++ package/packages/ari/townsquare/comment/index.js
@@ -284,20 +284,23 @@
var townsquareCommentAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^[a-zA-Z0-9_\\-.]{1,255}$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: TownsquareCommentAriResourceOwner,
resourceType: TownsquareCommentAriResourceType,
resourceIdSlug: "{commentUuid}",
resourceIdSegmentFormats: {
commentUuid: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
+ // eslint-disable-line no-useless-escape
}
};
// src/townsquare/comment/index.ts
var TownsquareCommentAri = class _TownsquareCommentAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._siteId = opts.cloudId || "", this._commentUuid = opts.resourceIdSegmentValues.commentUuid;
+ super(opts);
+ this._siteId = opts.cloudId || "", this._commentUuid = opts.resourceIdSegmentValues.commentUuid;
}
get siteId() {
return this._siteId;
}