Allow photos as part of checkin

This commit is contained in:
2023-02-25 16:38:18 +11:00
parent df567596ac
commit 62e518673a

View File

@@ -103,7 +103,7 @@ module Adamantium
new_params[:published_at] = published.to_s
new_params[:post_type] = :checkin
location = params.dig(:properties, :location).first[:properties]
new_params[:photos] = []
new_params[:photos] = checkin.dig(:properties, :photo)&.map { |p| {value: v, alt: new_params[:name]} } || []
new_params[:location] = "geo:#{location.dig(:latitude).first},#{location.dig(:longitude).first};u=0"
new_params
end