Update ToDo
This commit is contained in:
@@ -8,12 +8,16 @@ Server:
|
|||||||
Resume:
|
Resume:
|
||||||
Block API Access as much as possible [ Disallow AI keyword filters ]
|
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:
|
Auth:
|
||||||
Make sure autorenew works
|
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:
|
Client:
|
||||||
jobs/new:
|
jobs/new:
|
||||||
Job Listing Skills exists but isn't implimented in the UI
|
Job Listing Skills exists but isn't implimented in the UI
|
||||||
@@ -37,8 +41,6 @@ Client:
|
|||||||
|
|
||||||
CompanyConnect:
|
CompanyConnect:
|
||||||
need to lookup company before making a new one
|
need to lookup company before making a new one
|
||||||
|
|
||||||
Employees:
|
|
||||||
|
|
||||||
|
|
||||||
database:
|
database:
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ namespace BoredCareers.Services.DatabaseService {
|
|||||||
public async Task<Resume[]> GetResumes(int AccountID) {
|
public async Task<Resume[]> GetResumes(int AccountID) {
|
||||||
List<Resume> resumes = new List<Resume>();
|
List<Resume> resumes = new List<Resume>();
|
||||||
using (MySqlConnection connection = GetConnection()) {
|
using (MySqlConnection connection = GetConnection()) {
|
||||||
connection.Open();
|
await connection.OpenAsync();
|
||||||
string command = @"
|
string command = @"
|
||||||
SELECT *
|
SELECT *
|
||||||
FROM Resume
|
FROM Resume
|
||||||
|
|||||||
Reference in New Issue
Block a user