Prepopulate authentication view with current server address
This commit is contained in:
parent
5f94efc58d
commit
3ae134188e
2 changed files with 5 additions and 1 deletions
|
@ -144,7 +144,10 @@ namespace LANCommander.PlaynitePlugin
|
|||
window.Title = "Authenticate to LANCommander";
|
||||
|
||||
window.Content = new Views.Authentication(this);
|
||||
window.DataContext = new ViewModels.Authentication();
|
||||
window.DataContext = new ViewModels.Authentication()
|
||||
{
|
||||
ServerAddress = Settings.ServerAddress
|
||||
};
|
||||
|
||||
window.Owner = PlayniteApi.Dialogs.GetCurrentAppWindow();
|
||||
window.WindowStartupLocation = System.Windows.WindowStartupLocation.CenterOwner;
|
||||
|
|
|
@ -39,6 +39,7 @@ namespace LANCommander.PlaynitePlugin
|
|||
PART_AuthenticateLabel.Content = "Checking authentication status...";
|
||||
PART_AuthenticationButton.IsEnabled = false;
|
||||
PART_AuthenticateLabel.Content = Settings.InstallDirectory;
|
||||
|
||||
var token = new AuthToken()
|
||||
{
|
||||
AccessToken = Settings.AccessToken,
|
||||
|
|
Loading…
Add table
Reference in a new issue