Skip to content

Commit

Permalink
Minor fix - InstallModel
Browse files Browse the repository at this point in the history
  • Loading branch information
KrzysztofPajak committed Oct 9, 2018
1 parent 86f7928 commit 5bbf0cf
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Grand.Web/Models/Install/InstallModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,18 @@ public InstallModel()
{
this.AvailableLanguages = new List<SelectListItem>();
}

public string AdminEmail { get; set; }

[DataType(DataType.Password)]
public string AdminPassword { get; set; }

[DataType(DataType.Password)]
public string ConfirmPassword { get; set; }

public string DatabaseConnectionString { get; set; }

public string DataProvider { get; set; }

public bool MongoDBConnectionInfo { get; set; }
public string MongoDBServerName { get; set; }
public string MongoDBDatabaseName { get; set; }
public string MongoDBUsername { get; set; }
[DataType(DataType.Password)]
public string MongoDBPassword { get; set; }
public bool DisableSampleDataOption { get; set; }
public bool InstallSampleData { get; set; }
Expand Down

0 comments on commit 5bbf0cf

Please sign in to comment.