feat: video generation, image to image generation and a bunch of new features

This commit is contained in:
xavidop
2025-07-23 16:12:17 +02:00
parent 5a5b279c4a
commit d3bf5498ad
46 changed files with 6606 additions and 1329 deletions
+24
View File
@@ -0,0 +1,24 @@
rules_version = '2';
// Craft rules based on data in your Firestore database
// allow write: if firestore.get(
// /databases/(default)/documents/users/$(request.auth.uid)).data.isAdmin;
service firebase.storage {
match /b/{bucket}/o {
// Allow public read access to cards, but require authentication for writing
match /cards/{allPaths=**} {
allow read: if true; // Public read access for sharing
allow write: if request.auth != null; // Authenticated write access
}
// Allow authenticated users to read and write their own user files
match /users/{userId}/{allPaths=**} {
allow read, write: if request.auth != null && request.auth.uid == userId;
}
// Deny all other access
match /{allPaths=**} {
allow read, write: if false;
}
}
}