@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/microsoft/channel/index.js~
packages/ari/microsoft/channel/index.jsModified+5−1
Index: package/packages/ari/microsoft/channel/index.js
===================================================================
--- package/packages/ari/microsoft/channel/index.js
+++ package/packages/ari/microsoft/channel/index.js
@@ -284,21 +284,25 @@
var microsoftChannelAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: MicrosoftChannelAriResourceOwner,
resourceType: MicrosoftChannelAriResourceType,
resourceIdSlug: "teamId/{teamId}/channelId/{channelId}",
resourceIdSegmentFormats: {
teamId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/,
+ // eslint-disable-line no-useless-escape
channelId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+ // eslint-disable-line no-useless-escape
}
};
// src/microsoft/channel/index.ts
var MicrosoftChannelAri = class _MicrosoftChannelAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._teamId = opts.resourceIdSegmentValues.teamId, this._channelId = opts.resourceIdSegmentValues.channelId;
+ super(opts);
+ this._teamId = opts.resourceIdSegmentValues.teamId, this._channelId = opts.resourceIdSegmentValues.channelId;
}
get teamId() {
return this._teamId;
}