mirror of
https://github.com/kevin-DL/comedy-video-lib.git
synced 2026-01-11 19:04:27 +00:00
- Created midlewares for authenticated and guest] - Add the token to the api calls - Added redirect after the login
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
export default function ({ store, redirect }) {
|
|
// If the user is not authenticated
|
|
if (!store.state.auth.loggedIn) {
|
|
return redirect('/login')
|
|
}
|
|
}
|