View Source StepFlow.Updates (StepFlow v1.8.0)

The Updates context.

Summary

Functions

Link to this function

create_update(attrs \\ %{})

View Source

Creates an update.

Examples

iex> create_update(%{field: value})
{:ok, %Update{}}

iex> create_update(%{field: bad_value})
{:error, %Ecto.Changeset{}}
Link to this function

update_parameters(job, parameters)

View Source