mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
6 lines
183 B
JavaScript
6 lines
183 B
JavaScript
|
export default function ({ store, redirect, route }) {
|
||
|
// If the user is not authenticated
|
||
|
if (!store.state.user.user) {
|
||
|
return redirect(`/login?redirect=${route.path}`)
|
||
|
}
|
||
|
}
|