cloud-ide-lms-model 1.0.322 → 1.0.323
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.
package/lib/routes/authRoutes.js
CHANGED
|
@@ -19,6 +19,8 @@ const authRoutesUrl = {
|
|
|
19
19
|
forgotPassword: 'forgot-password',
|
|
20
20
|
/** Endpoint to sign out */
|
|
21
21
|
signOut: 'sign-out',
|
|
22
|
+
/** Endpoint to generate view-only token for public APIs */
|
|
23
|
+
generateViewOnlyToken: 'generate-view-only-token',
|
|
22
24
|
};
|
|
23
25
|
exports.authRoutesUrl = authRoutesUrl;
|
|
24
26
|
// Freeze the authRoutesUrl object to prevent modifications
|