1
0
Fork 0
mirror of synced 2024-09-29 16:51:33 +13:00

Merge branch 'fix/onboarding' of https://github.com/Budibase/budibase into fix/onboarding

This commit is contained in:
Martin McKeaveney 2021-05-20 12:46:58 +01:00
commit 2e88ceaecf
2 changed files with 7 additions and 5 deletions

View file

@ -8,11 +8,11 @@ export function createAuthStore() {
subscribe: store.subscribe,
checkAuth: async () => {
const response = await api.get("/api/admin/users/self")
const user = await response.json()
if (response.status === 200) {
store.update(state => ({ ...state, user }))
} else {
if (response.status !== 200) {
store.update(state => ({ ...state, user: null }))
} else {
const user = await response.json()
store.update(state => ({ ...state, user }))
}
},
login: async creds => {

View file

@ -16,7 +16,9 @@ async function redirect(ctx, method) {
body: ctx.request.body,
})
)
ctx.body = await response.json()
if (response.status !== 200) {
ctx.throw(response.status, response.statusText)
}
const cookie = response.headers.get("set-cookie")
if (cookie) {
ctx.set("set-cookie", cookie)