complexqa_frontend_core 1.6.4 → 1.6.5
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/package.json
CHANGED
|
@@ -66,6 +66,13 @@ export class UserService extends abstractService
|
|
|
66
66
|
static csrf_token = false;
|
|
67
67
|
|
|
68
68
|
|
|
69
|
+
/**
|
|
70
|
+
*
|
|
71
|
+
* @type {string}
|
|
72
|
+
*/
|
|
73
|
+
static start_page = '/web/en/project/listing';
|
|
74
|
+
|
|
75
|
+
|
|
69
76
|
/**
|
|
70
77
|
*
|
|
71
78
|
*
|
|
@@ -294,4 +301,14 @@ export class UserService extends abstractService
|
|
|
294
301
|
{
|
|
295
302
|
UserService.current_language = current_language;
|
|
296
303
|
}
|
|
304
|
+
|
|
305
|
+
/**
|
|
306
|
+
*
|
|
307
|
+
* @version v.1.1 (22/02/2026)
|
|
308
|
+
* @param {string} start_page
|
|
309
|
+
*/
|
|
310
|
+
static set_start_page(start_page)
|
|
311
|
+
{
|
|
312
|
+
UserService.start_page = start_page;
|
|
313
|
+
}
|
|
297
314
|
}
|