Skip to content

Commit

Permalink
Remove outdated verbose? option in seeds creation
Browse files Browse the repository at this point in the history
  • Loading branch information
skanderm committed Jul 2, 2024
1 parent 7cca2b9 commit 8bb6631
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/priv/repo/seeds.exs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ feeds =
{:ok, []} ->
Orcasite.Radio.Feed
|> Ash.Changeset.for_create(:create, attrs)
|> Ash.create!(verbose?: true, authorize?: false)
|> Ash.create!(authorize?: false)

{:ok, [feed | _]} ->
feed
Expand Down Expand Up @@ -306,7 +306,7 @@ Orcasite.Accounts.User
:submit_detection,
Map.merge(attrs, %{feed_id: feed_id, send_notifications: false})
)
|> Ash.create!(verbose?: true, authorize?: false)
|> Ash.create!(authorize?: false)

_ ->
:ok
Expand Down

0 comments on commit 8bb6631

Please sign in to comment.