* 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
5 lines
184 B
C#
5 lines
184 B
C#
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace Elsa.Http.Models;
|
|
|
|
public record AuthorizeHttpEndpointContext(HttpContext HttpContext, string WorkflowInstanceId, string? Policy = default); |