feat(deriv): integrate Deriv API websocket connectivity
Add Deriv API websocket client, route handling, and Firestore security rules to support automated trading integration.
This commit is contained in:
+7
-2
@@ -129,8 +129,13 @@ service cloud.firestore {
|
||||
}
|
||||
|
||||
// Auto Trades Collection
|
||||
match /users/{userId}/auto_trades/{tradeId} {
|
||||
allow read, write: if true;
|
||||
match /users/{userId}/auto_trades/{document=**} {
|
||||
allow read, write: if isOwner(userId) || isDbAdmin();
|
||||
}
|
||||
|
||||
// Auto Trades Results Collection
|
||||
match /users/{userId}/auto_trades_results/{document=**} {
|
||||
allow read, write: if isOwner(userId) || isDbAdmin();
|
||||
}
|
||||
|
||||
// Global Auto Trades Collection
|
||||
|
||||
Reference in New Issue
Block a user