update webbase design

This commit is contained in:
ChiKyun Kim
2025-07-27 16:25:15 +09:00
parent afbac3248e
commit 0c5744c12c
17 changed files with 2414 additions and 225 deletions

View File

@@ -22,6 +22,13 @@ namespace Project.OWIN
//라우팅 설정
config.MapHttpAttributeRoutes();
// 컨트롤러만 있는 경우 기본 액션을 Index로 설정
config.Routes.MapHttpRoute(
name: "ControllerOnly",
routeTemplate: "{controller}",
defaults: new { action = "Index" }
);
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "{controller}/{action}/{id}",