mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
27 lines
543 B
JavaScript
27 lines
543 B
JavaScript
export function auth ( to, from, store ) {
|
|
if(!store.getters.isLoggedIn){
|
|
console.log("router: guard: auth: activated");
|
|
return {
|
|
path: '/login'
|
|
}
|
|
}
|
|
}
|
|
|
|
export function eula ( to, from, store ) {
|
|
if(!store.getters.isEulaAccepted){
|
|
console.log("router: guard: eula: activated");
|
|
return {
|
|
path: '/accept-eula'
|
|
}
|
|
}
|
|
}
|
|
|
|
export function whatsNew( to, from, store ) {
|
|
if(store.getters.showWhatsNew){
|
|
console.log("router: guard: whatsNew: activated");
|
|
return {
|
|
path: '/whats-new'
|
|
}
|
|
}
|
|
}
|