set first photo to featured

This commit is contained in:
Inhji 2023-07-17 23:12:07 +02:00
parent 18237ce258
commit 18dc503e1f

View file

@ -16,10 +16,13 @@ defmodule ChiyaWeb.Indie.Micropub do
# TODO: Make separate function for this # TODO: Make separate function for this
properties properties
|> Props.get_photos() |> Props.get_photos()
|> Enum.map(fn photo -> |> Enum.with_index()
|> Enum.map(fn {photo, index} ->
featured = index == 0
Chiya.Notes.create_note_image(%{ Chiya.Notes.create_note_image(%{
note_id: note.id, note_id: note.id,
path: photo.path path: photo.path,
featured: featured
}) })
end) end)
|> Enum.each(fn result -> |> Enum.each(fn result ->