Not able to override creation default route

Ok,

It’s clear, thank you.

To do this a route override is not needed. A smart field is recommended:

  • Define a smart field image for the image content (as described above, no blob in your db)
  • Define a field imageUrl on the model to store the URL
  • In the smart field setter, send the image to S3 and then update the imageUrl field (example here)

So the link will be stored in the database :ok_hand:

Let me know if that’ ok.