mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-20 20:05:44 +02:00
6 lines
No EOL
185 B
JavaScript
6 lines
No EOL
185 B
JavaScript
export default function ({ store, redirect, route }) {
|
|
// If the user is not authenticated
|
|
if (!store.state.user.user) {
|
|
return redirect(`/connect?redirect=${route.path}`)
|
|
}
|
|
} |