Updated logo + added production paths for gql and firebase api.

This commit is contained in:
Patrick Fic
2020-10-07 13:49:45 -07:00
parent 619df3620f
commit 81f1168441
7 changed files with 37 additions and 27 deletions

View File

@@ -16,7 +16,7 @@ namespace BodyshopPartner.Utils
public static GraphQLHttpClient CreateGQLClient()
{
var graphQLClient = new GraphQLHttpClient("https://bodyshop-dev-db.herokuapp.com/v1/graphql", new NewtonsoftJsonSerializer());
var graphQLClient = new GraphQLHttpClient(AppMetaData.graphQlEndpoint, new NewtonsoftJsonSerializer());
graphQLClient.HttpClient.DefaultRequestHeaders.Add("Authorization", "Bearer " + Utils.Auth.authlink.FirebaseToken);
return graphQLClient;