Untitled

 avatar
unknown
javascript
2 years ago
877 B
5
Indexable
rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
  	match /gallery/{id} {
    	allow read: if true;
    }
  
    match /styles/{id} {
    	allow read: if true;
    }
    
    match /images/{id} {
			allow read, write: if true;
		}
    
    match /users/{uid} {
      allow read, write: if request.auth.uid == uid;

      match /checkout_sessions/{id} {
        allow read, write: if request.auth.uid == uid;
      }
      match /subscriptions/{id} {
        allow read: if request.auth.uid == uid;
      }
      match /payments/{id} {
        allow read: if request.auth.uid == uid;
      }
    }

    match /products/{id} {
      allow read: if true;

      match /prices/{id} {
        allow read: if true;
      }

      match /tax_rates/{id} {
        allow read: if true;
      }
    }
  }
}
Editor is loading...