Skip to content

Commit

Permalink
Fix __AppController problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
samchon committed Dec 18, 2024
1 parent 1f743f5 commit f761549
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export namespace MigrateControllerAnalyzer {
const name: string =
route.operation()["x-samchon-controller"] ??
(route.accessor.length <= 1
? "App"
? "__App"
: route.accessor.slice(0, -1).map(StringUtil.capitalize).join("")) +
"Controller";
MapUtil.take(collection)(name)(() => ({
Expand Down

0 comments on commit f761549

Please sign in to comment.