mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-06-03 09:20:39 +02:00
Fix dynamic route requests, add auth middleware
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
export default function ({ store, redirect, route }) {
|
||||
// If the user is not authenticated
|
||||
if (!store.state.user.user) {
|
||||
return redirect(`/login?redirect=${route.path}`)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user