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