mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange.git
synced 2026-08-19 20:34:08 +00:00
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
import store from '~/store'
|
|
|
|
export default (to, from, next) => {
|
|
console.log(store.getters['auth/role'])
|
|
if (store.getters['auth/role'] !== 'admin') {
|
|
next({ name: 'home' })
|
|
} else {
|
|
next()
|
|
}
|
|
}
|