FS DB RULE: Access anything anyone

rules_version = '2';
service cloud.firestore {
  match /databases/{database}/documents {
      match /{document=**}{
          // Any request for anything will be accepted
          allow read,write;
      }
  }
}