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