mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-07-26 23:18:39 +00:00
Return 200 for a lot of endpoints that were returning 404, implement /unpublish/{id}
This commit is contained in:
parent
44194a05ac
commit
932f05f108
9 changed files with 64 additions and 16 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue