fix: handle token expiry (#3847)

This commit is contained in:
Erez Rokah
2020-06-03 12:44:03 +03:00
committed by GitHub
parent 43ef28b5dc
commit 285c940562
20 changed files with 282 additions and 17 deletions

View File

@ -63,6 +63,10 @@ export default class ProxyBackend implements Implementation {
return false;
}
status() {
return Promise.resolve({ auth: true });
}
authComponent() {
return AuthenticationPage;
}