mirror of
				https://gitcode.com/gh_mirrors/re/react-native-pushy.git
				synced 2025-10-31 13:23:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			416 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| rules_version = '2';
 | |
| service cloud.firestore {
 | |
|   match /databases/{database}/documents {
 | |
|   match /{document=**} {
 | |
|       allow read, write: if false;
 | |
|     }
 | |
|   match /firestore-bundle-tests/{document=**} {
 | |
|       allow read, write: if true;
 | |
|     }
 | |
|   match /firestore/{document=**} {
 | |
|       allow read, write: if true;
 | |
|     } 
 | |
|   match /{path=**}/collectionGroup/{documentId} {
 | |
|       allow read, write: if true;
 | |
|     }  
 | |
|   }
 | |
| } | 
