Allow removing subdomain
This commit is contained in:
@@ -24,10 +24,7 @@ const Auth = observer(({ auth, children }: Props) => {
|
||||
return <LoadingIndicator />;
|
||||
}
|
||||
|
||||
if (
|
||||
team.subdomain &&
|
||||
!window.location.hostname.startsWith(team.subdomain)
|
||||
) {
|
||||
if (window.location.origin !== team.url) {
|
||||
window.location.href = `${team.url}${window.location.pathname}`;
|
||||
return <LoadingIndicator />;
|
||||
}
|
||||
|
||||
@@ -39,6 +39,8 @@ class ApiClient {
|
||||
const headers = new Headers({
|
||||
Accept: 'application/json',
|
||||
'Content-Type': 'application/json',
|
||||
'cache-control': 'no-cache',
|
||||
pragma: 'no-cache',
|
||||
});
|
||||
if (stores.auth.authenticated) {
|
||||
invariant(stores.auth.token, 'JWT token not set properly');
|
||||
@@ -52,6 +54,7 @@ class ApiClient {
|
||||
headers,
|
||||
redirect: 'follow',
|
||||
credentials: 'omit',
|
||||
cache: 'no-cache',
|
||||
});
|
||||
|
||||
if (response.status >= 200 && response.status < 300) {
|
||||
|
||||
Reference in New Issue
Block a user