Update route for product tables

This commit is contained in:
martinshoob 2025-08-12 07:50:41 +02:00
parent cfa0da8082
commit 84e6f7e2c9

View file

@ -1,14 +1,11 @@
using DrinkRateAPI.ApiModels.ProductTable; using DrinkRateAPI.ApiModels.ProductTable;
using DrinkRateAPI.AuthorizationPolicies;
using DrinkRateAPI.DbEntities;
using DrinkRateAPI.Services; using DrinkRateAPI.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
namespace DrinkRateAPI.Controllers; namespace DrinkRateAPI.Controllers;
[ApiController] [ApiController]
[Route("productTable")] [Route("productTables")]
public class ProductTableController : ControllerBase public class ProductTableController : ControllerBase
{ {
private ProductTableService _productTableService; private ProductTableService _productTableService;