aboutsummaryrefslogtreecommitdiff
path: root/storage.rules
diff options
context:
space:
mode:
authorMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-08-04 20:35:19 -0400
committerMichael Foiani <mfoiani2019@communiyschoolnaples.org>2018-08-04 20:35:19 -0400
commit8a4ac744830f61f1309ad83221a9736f0364fe1c (patch)
tree7cd6d2f44ebc0b708c6ee8aa63e1335663910f3e /storage.rules
parentdccdb5d99218396b59705d9852a081f4b657f446 (diff)
Deployed on firebase using the firebase.json config file. Also, fixed a spelling issue with forums.
Diffstat (limited to 'storage.rules')
-rw-r--r--storage.rules7
1 files changed, 7 insertions, 0 deletions
diff --git a/storage.rules b/storage.rules
new file mode 100644
index 0000000..d494542
--- /dev/null
+++ b/storage.rules
@@ -0,0 +1,7 @@
+service firebase.storage {
+ match /b/{bucket}/o {
+ match /{allPaths=**} {
+ allow read, write: if request.auth!=null;
+ }
+ }
+}