Put to Patch
This commit is contained in:
parent
44086054b3
commit
c6bd14d15f
@ -54,8 +54,8 @@ public class ProductController : ControllerBase {
|
||||
}
|
||||
|
||||
[EnableCors("_myAllowSpecificOrigins")]
|
||||
[HttpPut(Name = "Product")]
|
||||
public ActionResult<Product> Put(Product prod) {
|
||||
[HttpPatch(Name = "Product")]
|
||||
public ActionResult<Product> Patch(Product prod) {
|
||||
try {
|
||||
_context.Products.Update(prod);
|
||||
_context.SaveChanges();
|
||||
|
Loading…
Reference in New Issue
Block a user