mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 07:11:02 +00:00
Merge branch '54mir/authentication' of github.com:molecula/featurebase into 54mir/authentication
This commit is contained in:
commit
89f360c1ce
1 changed files with 15 additions and 18 deletions
|
|
@ -56,26 +56,23 @@ function useProvideAuth() {
|
|||
pilosa.get
|
||||
.auth()
|
||||
.then((res) => {
|
||||
// User is authenticated
|
||||
if (res.data === "OK") {
|
||||
setAuthOn(true);
|
||||
setIsAuthenticated(true);
|
||||
|
||||
// get userinfo
|
||||
userinfo();
|
||||
}
|
||||
// Auth is off
|
||||
else if (
|
||||
res.data.startsWith(
|
||||
"Trying to authenticate but authentication is off"
|
||||
)
|
||||
) {
|
||||
if (res.status === 204) {
|
||||
// Authentication is off
|
||||
setAuthOn(false);
|
||||
}
|
||||
// User not authenticated
|
||||
else {
|
||||
} else {
|
||||
// Turn on Authentication
|
||||
setAuthOn(true);
|
||||
setIsAuthenticated(false);
|
||||
|
||||
if (res.data === "OK") {
|
||||
// User is authenticated
|
||||
setIsAuthenticated(true);
|
||||
|
||||
// get userinfo
|
||||
userinfo();
|
||||
} else {
|
||||
// User not authenticated
|
||||
setIsAuthenticated(false);
|
||||
}
|
||||
}
|
||||
})
|
||||
.finally(() => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue