From c2ba1b2828439d3bd1e846a4bb9a4c456562c460 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Fri, 2 Sep 2022 11:17:21 +0200 Subject: [PATCH] feat: move attachments store to stores --- src/store/index.ts | 2 -- src/{store/modules => stores}/attachments.ts | 0 2 files changed, 2 deletions(-) rename src/{store/modules => stores}/attachments.ts (100%) diff --git a/src/store/index.ts b/src/store/index.ts index 6fa534079..3e0b1cda9 100644 --- a/src/store/index.ts +++ b/src/store/index.ts @@ -17,7 +17,6 @@ import config from './modules/config' import auth from './modules/auth' import kanban from './modules/kanban' import tasks from './modules/tasks' -import attachments from './modules/attachments' import ListModel from '@/models/list' @@ -40,7 +39,6 @@ export const store = createStore({ auth, kanban, tasks, - attachments, }, state: () => ({ loading: false, diff --git a/src/store/modules/attachments.ts b/src/stores/attachments.ts similarity index 100% rename from src/store/modules/attachments.ts rename to src/stores/attachments.ts