set first photo to featured #216

Merged
inhji merged 2 commits from devel into main 2023-07-17 23:12:49 +02:00

View file

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