app: allow credentials in fetch request

This commit is contained in:
Mohamed Sohail 2021-11-02 13:28:24 +03:00
parent bdaafab005
commit 3b4701e98c
Signed by: kamikazechaser
GPG Key ID: 7DD45520C01CD85D

View File

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