10 lines
175 B
JavaScript
10 lines
175 B
JavaScript
|
import store from '~/store'
|
||
|
|
||
|
export default (to, from, next) => {
|
||
|
if (!store.getters['auth/user'].is_subscribed) {
|
||
|
next({ name: 'pricing' })
|
||
|
} else {
|
||
|
next()
|
||
|
}
|
||
|
}
|