firebase rules
unknown
json
3 years ago
808 B
10
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 /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...