Thanks for pointing me in the right direction, it was working with the direct upload, but I was passing the blob signed id to the controller as a string rather than an array, this worked below:
let formData = new FormData()
formData.append("event[evidences][]", [this.hiddenInput.value] )
Rails.ajax({
url: this.data.get("update-url"),
type: "PATCH",
data: formData
});
This is an oldie ☒!! But very helpful as i've just started using this with Trix. However, i need to loop through a has many association (quote has_many line_items) and was wondering if you have any pointers on this? The belongs_to relationship works great
☒ It would be cool to maybe do a series adding to your app runner episode, and do GCP cloud run, DO App Platform and Azure Container App (i think?).Personally i would love to see buildpacks used instead of docker, but that's because im really interested in using them but haven't had the time to explore them
☒ Just something i've been playing with, GCP Cloud Run now supports Ruby with Buildpacks, making it a little more 'Heroku' like. PG gem fails to install so im trying to fix this at the moment, just thought i'd give the heads up :)