Added the rest of the URLS

pull/3895/head
Jamie Rees 5 years ago
parent 8a7ecd7955
commit ce6dd5e2ee

@ -2,19 +2,26 @@ export function getBaseLocation() {
debugger;
let paths: string[] = location.pathname.split('/').splice(1, 1);
let basePath: string = (paths && paths[0] ? paths[0] : "");
if(invalidProxies.indexOf(basePath) === -1){
if(invalidProxies.indexOf(basePath.toUpperCase()) === -1){
return '/';
}
return '/' + basePath;
}
const invalidProxies: string[] = [
'discover',
'requests-list',
'Settings',
'issues',
'usermanagement',
'recentlyadded',
'details',
'vote'
'DISCOVER',
'REQUESTS-LIST',
'SETTINGS',
'ISSUES',
'USERMANAGEMENT',
'RECENTLYADDED',
'DETAILS',
'VOTE',
'LOGIN',
'LANDINGPAGE',
'TOKEN',
'RESET',
'CUSTOM',
'AUTH',
'WIZARD'
]
Loading…
Cancel
Save