mirror of
https://github.com/fergalmoran/OpnForm.git
synced 2026-01-29 03:46:31 +00:00
10 lines
175 B
JavaScript
Vendored
10 lines
175 B
JavaScript
Vendored
import store from '~/store'
|
|
|
|
export default (to, from, next) => {
|
|
if (!store.getters['auth/user'].is_subscribed) {
|
|
next({ name: 'pricing' })
|
|
} else {
|
|
next()
|
|
}
|
|
}
|