Return 200 for a lot of endpoints that were returning 404, implement /unpublish/{id}

This commit is contained in:
jvyden 2021-10-08 18:02:34 -04:00
commit 932f05f108
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
9 changed files with 64 additions and 16 deletions

View file

@ -107,5 +107,10 @@ namespace ProjectLighthouse.Controllers {
if(database.ChangeTracker.HasChanges()) await database.SaveChangesAsync(); // save the user to the database if we changed anything
return this.Ok();
}
[HttpPost("match")]
public IActionResult Match() {
return this.Ok();
}
}
}