mirror of
https://github.com/farcasclaudiu/AzureStaticWebApp-CSharp-SimpleDemo.git
synced 2026-06-22 05:01:01 +03:00
typo
This commit is contained in:
+1
-1
@@ -9,7 +9,7 @@ using Microsoft.Extensions.Logging;
|
||||
using Newtonsoft.Json;
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace Company.Function
|
||||
namespace demo.Function
|
||||
{
|
||||
public static class HelloYou
|
||||
{
|
||||
|
||||
+4
-4
@@ -9,13 +9,13 @@ using Microsoft.Extensions.Logging;
|
||||
using Newtonsoft.Json;
|
||||
using System.Security.Claims;
|
||||
|
||||
namespace Company.Function
|
||||
namespace demo.Function
|
||||
{
|
||||
public static class HelloYou
|
||||
public static class JustHello
|
||||
{
|
||||
[FunctionName("HelloYou")]
|
||||
[FunctionName("JustHello")]
|
||||
public static async Task<IActionResult> Run(
|
||||
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "secured/HelloYou")] HttpRequest req,
|
||||
[HttpTrigger(AuthorizationLevel.Function, "get", "post")] HttpRequest req,
|
||||
ILogger log,
|
||||
ClaimsPrincipal principal)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user