dch09Original post
Rank 2: Process
my app will use storage in 3 ways:
- posting photos for specified place_id (place, eg. Grocery Store)
- displaying photos for specified place_id
- posting / changing / deleting user profile picture
is there any guildeline i should follow doing this?
I've read about creating inbox storage which is write only for users and move photos to another, read only bucket via functions.
Summary
The user is seeking advice on best practices for using buckets in their app. They mention three ways they will be using storage: posting photos for a specific place, displaying photos for a specific place, and managing user profile pictures. They have read about creating an "inbox storage" for write-only access and then moving photos to a read-only bucket using functions. They are asking if there are any guidelines they should follow for implementing this.
A solution is provided by another user, suggesting that the user follows the recommended approach of creating an inbox storage for write-only access and using functions to move the photos to a separate read-only bucket. They advise the