Compare commits
No commits in common. "39c18ee9bf1ae07fc490182977e8c9b3d690d411" and "c3a414285a9861e94d66fa796f26e7ddc7ec0861" have entirely different histories.
39c18ee9bf
...
c3a414285a
@ -132,8 +132,7 @@ namespace EFB.Controllers
|
||||
headerData.Add("referer", "luke-else.co.uk");
|
||||
|
||||
Dictionary<string, string> formData = new Dictionary<string, string>();
|
||||
|
||||
formData.Add("token", Environment.GetEnvironmentVariable("ChartFoxAPIKey", EnvironmentVariableTarget.User));
|
||||
formData.Add("token", "");
|
||||
var body = new FormUrlEncodedContent(formData);
|
||||
|
||||
//make Charts request
|
||||
|
@ -3,7 +3,6 @@ using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using EFB.Models.JSON;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace EFB.Models
|
||||
{
|
||||
@ -18,10 +17,6 @@ namespace EFB.Models
|
||||
public Chart[] Transition { get; set; }
|
||||
public Chart[] PilotBriefing { get; set; }
|
||||
|
||||
[JsonConstructor]
|
||||
public ChartModel(){
|
||||
//Empty constructor for JSON Serialisation Purposes
|
||||
}
|
||||
public ChartModel(ChartList response)
|
||||
{
|
||||
General = FillChart(response.General);
|
||||
|
@ -39,8 +39,7 @@ namespace EFB.Models
|
||||
}
|
||||
|
||||
public static async Task<NavdataModel[]> Populate(){
|
||||
string password = Environment.GetEnvironmentVariable("MySQLPassword", EnvironmentVariableTarget.User);
|
||||
MySqlConnection con = new MySqlConnection($"server=server.luke-else.co.uk;userid=root;password={password};database=EFB");
|
||||
MySqlConnection con = new MySqlConnection("server=server.luke-else.co.uk;userid=root;password=;database=EFB");
|
||||
con.Open();
|
||||
|
||||
// Console.WriteLine($"MySQL version : {con.ServerVersion}");
|
||||
|
Loading…
x
Reference in New Issue
Block a user