This commit is contained in:
Tommy Parnell
2018-11-20 00:22:13 -05:00
parent f5759c34ed
commit d220b57594
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ namespace azure_functions_talk
[FunctionName("DozenPlz")]
public static async Task<IActionResult> Run(
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = "dozen")] HttpRequest req,
[HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = "dozen")] HttpRequest req,
ILogger log)
{
var baseUrl = Environment.GetEnvironmentVariable("baseUrl");