Merge branch 'fix/onboarding' of https://github.com/Budibase/budibase into fix/onboarding
This commit is contained in:
commit
2e88ceaecf
|
@ -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 => {
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue