Asked Today Active Today Viewed 1 times service firebase.storage { match /b/{bucket}/o { match /images/{imageId} { // Only allow uploads of any image file that's less than 5MB allow write: if request.resource.size < 5 * 1024 * 1024 && request.resource.contentType.matches('image/.*'); } } } The above mentioned code can be used for?
Data Validation
ExplanationNA |