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