From 9f704e7f75f6ad29c1c155f92da5fade2d24f2b3 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 24 Jan 2022 18:30:18 +0100 Subject: [PATCH] Cleanup unused code, app choices to be handled by the core --- app/src/store/data.js | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/app/src/store/data.js b/app/src/store/data.js index 58984423..50e39b48 100644 --- a/app/src/store/data.js +++ b/app/src/store/data.js @@ -11,7 +11,6 @@ export default { users: undefined, // basic user data: Object {username: {data}} users_details: {}, // precise user data: Object {username: {data}} groups: undefined, - apps: undefined, permissions: undefined }), @@ -45,15 +44,6 @@ export default { Vue.set(state.users, user.username, user) }, - 'SET_APPS' (state, [apps]) { - state.apps = apps || null - }, - - 'ADD_APPS' (state, [app]) { - if (!state.apps) state.apps = {} - Vue.set(state.apps, app.id, app) - }, - 'SET_USERS_DETAILS' (state, [username, userData]) { Vue.set(state.users_details, username, userData) if (!state.users) return @@ -186,16 +176,6 @@ export default { mainDomain: state => state.main_domain, - appsAsChoices: state => { - const choices = [{ value: "_none", text: "---" }] - if (state.apps) { - return choices.concat(Object.values(state.apps).map(({ id, name, domain_path }) => { - return { value: id, text: `${name} (${domain_path})` } - })) - } - return choices - }, - domainsAsChoices: state => { const mainDomain = state.main_domain return state.domains.map(domain => {