Replies: 1 comment 2 replies
-
There is no support for file storage in the database through API currently. Static file are stored in the database but that happens during app reload. For file storage api, storing in database is one option. Other option is to support load to S3 like storage. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am wondering if we have any store API for images and storing them.
Often you want to add a row to the DB, that "references" where the uploaded image is.
An example of this could be the current "Bookmarks" example app , where you want to upload a Screenshot image to represent the URL you bookmarked.
The URL field int he DB, would reference the Image UUID ( if thats what we used for the image file name the server. So the Link is established.
Linking a DB row to a Image file is such a common Pattern, that we could later even formalise in some way.
Beta Was this translation helpful? Give feedback.
All reactions