From 309ce1f4796c781cd12f3da0b574e45cc6029e66 Mon Sep 17 00:00:00 2001 From: tparnell Date: Thu, 10 Sep 2020 12:04:21 -0400 Subject: [PATCH] allow annon --- http.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http.cs b/http.cs index 22ed7c2..f141ad1 100644 --- a/http.cs +++ b/http.cs @@ -35,7 +35,7 @@ namespace aka.terribledev.io }; [FunctionName("http")] public static IActionResult Run( - [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "{*path}")] HttpRequest req, + [HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = "{*path}")] HttpRequest req, ILogger log, string path) {