From df74f9d80cdd44315a29189ecb2f236482cb70f5 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 24 Sep 2022 12:49:25 +0200 Subject: [PATCH] feat: move base store to stores --- src/{store/index.ts => stores/base.ts} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/{store/index.ts => stores/base.ts} (97%) diff --git a/src/store/index.ts b/src/stores/base.ts similarity index 97% rename from src/store/index.ts rename to src/stores/base.ts index cd001a8744..0bf6e73927 100644 --- a/src/store/index.ts +++ b/src/stores/base.ts @@ -12,14 +12,14 @@ import { LOADING_MODULE, LOGO_VISIBLE, MENU_ACTIVE, QUICK_ACTIONS_ACTIVE, -} from './mutation-types' +} from '../store/mutation-types' import ListModel from '@/models/list' import ListService from '../services/list' import {checkAndSetApiUrl} from '@/helpers/checkAndSetApiUrl' -import type { RootStoreState, StoreState } from './types' +import type { RootStoreState, StoreState } from '../store/types' import pinia from '@/pinia' import {useAuthStore} from '@/stores/auth'