@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/slack.slack/conversation/index.js~
packages/ari/slack.slack/conversation/index.jsModified+5−1
Index: package/packages/ari/slack.slack/conversation/index.js
===================================================================
--- package/packages/ari/slack.slack/conversation/index.js
+++ package/packages/ari/slack.slack/conversation/index.js
@@ -284,21 +284,25 @@
var slackSlackConversationAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: SlackSlackConversationAriResourceOwner,
resourceType: SlackSlackConversationAriResourceType,
resourceIdSlug: "workspaceId/{workspaceId}/channelId/{channelId}",
resourceIdSegmentFormats: {
workspaceId: /[!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/slack.slack/conversation/index.ts
var SlackSlackConversationAri = class _SlackSlackConversationAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._channelId = opts.resourceIdSegmentValues.channelId;
+ super(opts);
+ this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._channelId = opts.resourceIdSegmentValues.channelId;
}
get workspaceId() {
return this._workspaceId;
}