cloud-ide-lms-model 1.0.49 → 1.0.50
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.
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.userRoutesUrl = void 0;
|
|
4
|
+
/**
|
|
5
|
+
* Object containing URLs for user-related endpoints.
|
|
6
|
+
* These URLs are used for various user operations such as user selection.
|
|
7
|
+
*/
|
|
8
|
+
const userRoutesUrl = {
|
|
9
|
+
module: 'user',
|
|
10
|
+
userSelect: "user-select",
|
|
11
|
+
};
|
|
12
|
+
exports.userRoutesUrl = userRoutesUrl;
|
|
13
|
+
// Freeze the userRoutesUrl object to prevent modifications
|
|
14
|
+
Object.freeze(userRoutesUrl);
|