lint fix
This commit is contained in:
parent
98b1bbc655
commit
677106a58b
|
@ -2,36 +2,36 @@ import { writable } from "svelte/store"
|
||||||
import api from "builderStore/api"
|
import api from "builderStore/api"
|
||||||
|
|
||||||
export function createOrganisationStore() {
|
export function createOrganisationStore() {
|
||||||
const { subscribe, set } = writable({})
|
const { subscribe, set } = writable({})
|
||||||
|
|
||||||
async function init() {
|
async function init() {
|
||||||
try {
|
try {
|
||||||
const response = await api.get(`/api/admin/configs/settings`)
|
const response = await api.get(`/api/admin/configs/settings`)
|
||||||
const json = await response.json()
|
const json = await response.json()
|
||||||
set(json)
|
set(json)
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
set({
|
set({
|
||||||
platformUrl: '',
|
platformUrl: "",
|
||||||
logoUrl: '',
|
logoUrl: "",
|
||||||
docsUrl: '',
|
docsUrl: "",
|
||||||
company: ''
|
company: "",
|
||||||
})
|
})
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
subscribe,
|
|
||||||
save: async config => {
|
|
||||||
try {
|
|
||||||
await api.post('/api/admin/configs', { type: 'settings', config})
|
|
||||||
await init()
|
|
||||||
return { status: 200 }
|
|
||||||
} catch (error) {
|
|
||||||
return { error }
|
|
||||||
}
|
|
||||||
},
|
|
||||||
init
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
subscribe,
|
||||||
|
save: async config => {
|
||||||
|
try {
|
||||||
|
await api.post("/api/admin/configs", { type: "settings", config })
|
||||||
|
await init()
|
||||||
|
return { status: 200 }
|
||||||
|
} catch (error) {
|
||||||
|
return { error }
|
||||||
|
}
|
||||||
|
},
|
||||||
|
init,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export const organisation = createOrganisationStore()
|
export const organisation = createOrganisationStore()
|
Loading…
Reference in New Issue