app: allow credentials in fetch request

This commit is contained in:
2021-11-02 13:28:24 +03:00
parent bdaafab005
commit 3b4701e98c

View File

@@ -76,6 +76,7 @@ export class AuthService {
};
const options = {
headers,
credentials: 'include' as RequestCredentials,
};
return fetch(environment.cicMetaUrl, options);
}