audiobookshelf/client/middleware/authenticated.js

6 lines
183 B
JavaScript
Raw Normal View History

export default function ({ store, redirect, route }) {
// If the user is not authenticated
if (!store.state.user.user) {
return redirect(`/login?redirect=${route.path}`)
}
}