mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Cleanup unused code, app choices to be handled by the core
This commit is contained in:
parent
e685fd55a8
commit
9f704e7f75
1 changed files with 0 additions and 20 deletions
|
@ -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 => {
|
||||
|
|
Loading…
Reference in a new issue