mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2025-02-21 22:11:54 +01:00
LND locked guard on frontend routes
This commit is contained in:
parent
33f9c526d3
commit
6096166d9d
4 changed files with 5 additions and 5 deletions
|
@ -8,5 +8,5 @@
|
|||
<link rel="stylesheet" href="styles.7e944f30e4357f41ed14.css"></head>
|
||||
<body>
|
||||
<rtl-app></rtl-app>
|
||||
<script type="text/javascript" src="runtime.ec2944dd8b20ec099bf3.js"></script><script type="text/javascript" src="polyfills.418928a701f2040ada02.js"></script><script type="text/javascript" src="main.9504f780625c1e44dfb0.js"></script></body>
|
||||
<script type="text/javascript" src="runtime.ec2944dd8b20ec099bf3.js"></script><script type="text/javascript" src="polyfills.418928a701f2040ada02.js"></script><script type="text/javascript" src="main.6fa3ca6faff218e326e7.js"></script></body>
|
||||
</html>
|
||||
|
|
1
angular/main.6fa3ca6faff218e326e7.js
Normal file
1
angular/main.6fa3ca6faff218e326e7.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -158,20 +158,20 @@ const validateConfigFile = (config) => {
|
|||
const setSSOParams = (config) => {
|
||||
if (undefined !== process.env.RTL_SSO) {
|
||||
common.rtl_sso = process.env.RTL_SSO;
|
||||
} else if (undefined !== config.SSO.rtlSSO) {
|
||||
} else if (undefined !== config.SSO && undefined !== config.SSO.rtlSSO) {
|
||||
common.rtl_sso = config.SSO.rtlSSO;
|
||||
}
|
||||
|
||||
if (undefined !== process.env.LOGOUT_REDIRECT_LINK) {
|
||||
common.logout_redirect_link = process.env.LOGOUT_REDIRECT_LINK;
|
||||
} else if (undefined !== config.SSO.logoutRedirectLink) {
|
||||
} else if (undefined !== config.SSO && undefined !== config.SSO.logoutRedirectLink) {
|
||||
common.logout_redirect_link = config.SSO.logoutRedirectLink;
|
||||
}
|
||||
|
||||
|
||||
if (undefined !== process.env.RTL_COOKIE_PATH) {
|
||||
common.rtl_cookie_path = process.env.RTL_COOKIE_PATH;
|
||||
} else if (undefined !== config.SSO.rtlCookiePath) {
|
||||
} else if (undefined !== config.SSO && undefined !== config.SSO.rtlCookiePath) {
|
||||
common.rtl_cookie_path = config.SSO.rtlCookiePath;
|
||||
} else {
|
||||
common.rtl_cookie_path = common.rtl_conf_file_path + '/cookies/auth.cookie';
|
||||
|
|
Loading…
Add table
Reference in a new issue