elsa-core/src/modules/Elsa.Http/Models/AuthorizeHttpEndpointContext.cs
MariusVuscanNx c30586cd9e
Implemented workflow authorization (#3773)
* Returned 404 when path is not found and 500 when there are multiple workflows with the same path

* Return failure response in case of workflow fault

* Started workflow authorization implementation

* Implemented workflow authorization
2023-03-08 09:49:43 +01:00

5 lines
184 B
C#

using Microsoft.AspNetCore.Http;
namespace Elsa.Http.Models;
public record AuthorizeHttpEndpointContext(HttpContext HttpContext, string WorkflowInstanceId, string? Policy = default);