Skip to content

Commit

Permalink
Function name criteria has changed
Browse files Browse the repository at this point in the history
  • Loading branch information
sjuarez committed Jan 30, 2025
1 parent 50e97cb commit 40b5fc3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ internal string GetGxRouteValue(string path)
string pathWithNoBase = string.IsNullOrEmpty(basePath) ? path.Substring(1) : path.Substring(basePath.Length + 2);

//API Objects
string AzureFunctionShortName = AzureFunctionName.Substring(AzureFunctionName.LastIndexOf(".") + 1);
string AzureFunctionShortName = AzureFunctionName.Substring(AzureFunctionName.LastIndexOf("_") + 1);
string controllerWithParms = "";
foreach (var map in servicesMap)
{
Expand Down

0 comments on commit 40b5fc3

Please sign in to comment.