Update CategoriesApi.cs

pull/222/head
James Montemagno 2023-04-21 10:26:17 -07:00 committed by GitHub
parent 28ede256cd
commit 0a8b190ff0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -5,6 +5,7 @@ public static class CategoriesApi
public static RouteGroupBuilder MapCategoriesApi(this RouteGroupBuilder group)
{
group.MapGet("/", GetAllCategories).WithName("GetCategories");
group.MapGet("/test", GetAllCategories).WithName("GetCategoriesTest");
return group;
}