This commit is contained in:
Keviin Åberg Kultalahti 2021-05-05 18:41:16 +02:00
parent 98b1bbc655
commit 677106a58b
2 changed files with 30 additions and 30 deletions

View File

@ -1 +1 @@
export { organisation } from "./organisation" export { organisation } from "./organisation"

View File

@ -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
} }
} }
export const organisation = createOrganisationStore() 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()