Fixed authg + added graphql client.

This commit is contained in:
Patrick Fic
2020-01-16 21:48:03 -08:00
parent cfec5327dd
commit d77e0d1c02
5 changed files with 44 additions and 15 deletions

View File

@@ -14,9 +14,9 @@ namespace BodyshopUploader.ViewModels
{
_testCommand = new RelayCommand(
p => true,
p =>
async p =>
{
logger.Info("test command clicked");
await Utils.Auth.Refresh();
});
}
return _testCommand;