@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/workday.workday/worker/index.js~
packages/ari/workday.workday/worker/index.jsModified+1−4
Index: package/packages/ari/workday.workday/worker/index.js
===================================================================
--- package/packages/ari/workday.workday/worker/index.js
+++ package/packages/ari/workday.workday/worker/index.js
@@ -284,23 +284,20 @@
var workdayWorkdayWorkerAriStaticOpts = {
qualifier: "ari",
platformQualifier: "third-party",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: WorkdayWorkdayWorkerAriResourceOwner,
resourceType: WorkdayWorkdayWorkerAriResourceType,
resourceIdSlug: "{workdayId}",
resourceIdSegmentFormats: {
workdayId: /[a-zA-Z0-9_-]+/
- // eslint-disable-line no-useless-escape
}
};
// src/workday.workday/worker/index.ts
var WorkdayWorkdayWorkerAri = class _WorkdayWorkdayWorkerAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._workdayId = opts.resourceIdSegmentValues.workdayId;
+ super(opts), this._workdayId = opts.resourceIdSegmentValues.workdayId;
}
get workdayId() {
return this._workdayId;
}