Skip to content

Commit

Permalink
remove required true from metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Oct 16, 2024
1 parent d22269b commit d5b2541
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/uplink/packages/metadata.ex
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ defmodule Uplink.Packages.Metadata do
|> validate_required([:id, :slug])
|> cast_embed(:orchestration)
|> cast_embed(:channel, required: true, with: &channel_changeset/2)
|> cast_embed(:instances, required: true, with: &instance_changeset/2)
|> cast_embed(:instances, with: &instance_changeset/2)
|> cast_embed(:main_port)
|> cast_embed(:ports)
|> cast_embed(:variables, with: &variable_changeset/2)
Expand Down

0 comments on commit d5b2541

Please sign in to comment.