Skip to content

Commit

Permalink
Merge pull request #27 from bsandmann/dev
Browse files Browse the repository at this point in the history
fixed workflow execution on dynamic form page
  • Loading branch information
ndigirigijohn authored Feb 15, 2025
2 parents 9303c17 + 1dca8c4 commit 95b4c44
Show file tree
Hide file tree
Showing 3 changed files with 207 additions and 427 deletions.
4 changes: 2 additions & 2 deletions Blocktrust.CredentialWorkflow.Core/Services/FormService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Blocktrust.CredentialWorkflow.Core.Services;

public interface IFormService
{
Task<Result<Guid>> ProcessFormSubmission(Guid workflowId, Dictionary<string, object> formData);
Task<Result<Guid>> ProcessFormSubmission(Guid workflowId, Dictionary<string, string> formData);
}

public class FormService : IFormService
Expand All @@ -26,7 +26,7 @@ public FormService(IMediator mediator, ILogger<FormService> logger, IWorkflowQue
_workflowQueue = workflowQueue;
}

public async Task<Result<Guid>> ProcessFormSubmission(Guid workflowId, Dictionary<string, object> formData)
public async Task<Result<Guid>> ProcessFormSubmission(Guid workflowId, Dictionary<string, string> formData)
{
try
{
Expand Down
Loading

0 comments on commit 95b4c44

Please sign in to comment.