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