cloud-ide-lms-model 1.0.288 → 1.0.290
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -97,5 +97,9 @@ declare const coreRoutesUrl: {
|
|
|
97
97
|
* @description Endpoint to get the program term section (program-term-section)
|
|
98
98
|
*/
|
|
99
99
|
programTermSection: string;
|
|
100
|
+
/**
|
|
101
|
+
* generic path to get the mapping of entity access pass management for any form
|
|
102
|
+
*/
|
|
103
|
+
coreEntityAccessPassManagement: string;
|
|
100
104
|
};
|
|
101
105
|
export { coreRoutesUrl };
|
package/lib/routes/coreRoutes.js
CHANGED
|
@@ -100,6 +100,10 @@ const coreRoutesUrl = {
|
|
|
100
100
|
* @description Endpoint to get the program term section (program-term-section)
|
|
101
101
|
*/
|
|
102
102
|
programTermSection: "program-term-section",
|
|
103
|
+
/**
|
|
104
|
+
* generic path to get the mapping of entity access pass management for any form
|
|
105
|
+
*/
|
|
106
|
+
coreEntityAccessPassManagement: "core-entity-access-pass-management",
|
|
103
107
|
};
|
|
104
108
|
exports.coreRoutesUrl = coreRoutesUrl;
|
|
105
109
|
Object.freeze(coreRoutesUrl);
|