This commit is contained in:
2020-04-27 22:32:37 +00:00
parent d931a505f7
commit 20c174603c
3 changed files with 151 additions and 15 deletions

View File

@@ -132,7 +132,14 @@ namespace AyaNova.PlugIn.V8
}
Auth d = new Auth();
d.ShowDialog();
var res = d.ShowDialog(); ;
if (res == DialogResult.Cancel)
{
return;
}
//here because we logged in fine and can proceed
MessageBox.Show("Login successful! JWT is " + util.JWT);
//Only one command
// DumpIt();
}