Files
workload-service/lib/workload_service/aggregates/solicitation_task.ex
HaimKortovich ca86980833
All checks were successful
Build and Publish / build-release (push) Successful in 1m28s
add dialyzer and fix id
2026-04-21 14:26:37 -05:00

11 lines
262 B
Elixir

defmodule WorkloadService.Aggregates.SolicitationTask do
use WorkloadService.Aggregates.Task,
task_type: "solicitation",
commands: WorkloadService.Commands.SolicitationTask,
submission_type: map()
def validate_submission(_) do
:ok
end
end