mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-12 08:18:07 +00:00
17 lines
711 B
JavaScript
17 lines
711 B
JavaScript
import { Registry } from '@baserow/modules/core/registry'
|
|
|
|
import applicationStore from '@baserow/modules/core/store/application'
|
|
import authStore from '@baserow/modules/core/store/auth'
|
|
import groupStore from '@baserow/modules/core/store/group'
|
|
import notificationStore from '@baserow/modules/core/store/notification'
|
|
import sidebarStore from '@baserow/modules/core/store/sidebar'
|
|
|
|
export default ({ store }, inject) => {
|
|
inject('registry', new Registry())
|
|
|
|
store.registerModule('application', applicationStore)
|
|
store.registerModule('auth', authStore)
|
|
store.registerModule('group', groupStore)
|
|
store.registerModule('notification', notificationStore)
|
|
store.registerModule('sidebar', sidebarStore)
|
|
}
|