feature/feat-pinia-namespace-store | pinia 3/9 #2393

Merged
konrad merged 3 commits from dpschen/frontend:feature/feat-pinia-namespace-store into main 2022-09-22 15:34:34 +00:00
2 changed files with 1 additions and 3 deletions
Showing only changes of commit 9474240cb9 - Show all commits

View File

@ -15,7 +15,6 @@ import {
} from './mutation-types'
import config from './modules/config'
import auth from './modules/auth'
import namespaces from './modules/namespaces'
import kanban from './modules/kanban'
import tasks from './modules/tasks'
import attachments from './modules/attachments'
@ -39,7 +38,6 @@ export const store = createStore<RootStoreState>({
modules: {
config,
auth,
namespaces,
kanban,
tasks,
attachments,

View File

@ -1,6 +1,6 @@
import type { Module } from 'vuex'
import NamespaceService from '../../services/namespace'
import NamespaceService from '../services/namespace'
import {setLoading} from '@/store/helper'
import {createNewIndexer} from '@/indexes'
import type {NamespaceState, RootStoreState} from '@/store/types'