mirror of
https://github.com/fergalmoran/OpnForm.git
synced 2026-01-15 13:05:45 +00:00
10 lines
164 B
JavaScript
Vendored
10 lines
164 B
JavaScript
Vendored
import store from '~/store'
|
|
|
|
export default (to, from, next) => {
|
|
if (!store.getters['auth/user'].admin) {
|
|
next({ name: 'home' })
|
|
} else {
|
|
next()
|
|
}
|
|
}
|