diff --git a/ToDo.yaml b/ToDo.yaml index 3e63620..254c716 100755 --- a/ToDo.yaml +++ b/ToDo.yaml @@ -8,12 +8,16 @@ Server: Resume: Block API Access as much as possible [ Disallow AI keyword filters ] - Jobs: - Auto unlist jobs after a month of no activity [ Multiple offenders marked ] - Auth: Make sure autorenew works + Services/JobCleanupService: + need to make the applied table in sql before i can finish the background-service + Need to make a ratio on the database + closed successful jobs -> number + not closed successful jobs -> number + For company rating for ghost listings + Client: jobs/new: Job Listing Skills exists but isn't implimented in the UI @@ -37,8 +41,6 @@ Client: CompanyConnect: need to lookup company before making a new one - - Employees: database: diff --git a/src/Server/Services/DatabaseService/Resume.cs b/src/Server/Services/DatabaseService/Resume.cs index 88ff4d2..86eda81 100644 --- a/src/Server/Services/DatabaseService/Resume.cs +++ b/src/Server/Services/DatabaseService/Resume.cs @@ -9,7 +9,7 @@ namespace BoredCareers.Services.DatabaseService { public async Task GetResumes(int AccountID) { List resumes = new List(); using (MySqlConnection connection = GetConnection()) { - connection.Open(); + await connection.OpenAsync(); string command = @" SELECT * FROM Resume