Commit 2815d365 authored by Wolfgang Knopki's avatar Wolfgang Knopki
Browse files

isAuthenticatedUser sent to all

parent 016f14f8
Pipeline #129 passed with stage
in 3 seconds
...@@ -111,7 +111,7 @@ function head(){ ...@@ -111,7 +111,7 @@ function head(){
for(let k = 0; k< menu[j].combos.length; k++){ for(let k = 0; k< menu[j].combos.length; k++){
let combolink = document.createElement('a'); let combolink = document.createElement('a');
combolink.classList.add("dropdown-item"); combolink.classList.add("dropdown-item");
if(menu[j].combos[k].name == "Projekte" && userAuthenticated()){ if(userAuthenticated()){
combolink.href = menu[j].combos[k].link + "?isAuthenticatedUser=true"; combolink.href = menu[j].combos[k].link + "?isAuthenticatedUser=true";
}else{ }else{
combolink.href = menu[j].combos[k].link; combolink.href = menu[j].combos[k].link;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment