Dashboard Metrics
Overview
Live analytics from your partner network.
Recent Conversions
Partner Growth
Your partner network is generating active pipeline. Review new leads promptly to keep agencies engaged.
Fetching pipeline...
| Date & UID | Client Info | Partner Agency | Project & Budget | Pipeline Status | Action |
|---|
No leads found
Adjust your filters or wait for new submissions.
Partner Agencies
Agencies automatically appear here once they submit their first lead.
| Agency Name | Total Leads | Confirmed | Total Comm. Earned |
|---|
Security Rules
Copy and paste these rules into your Firebase Firestore to secure your pipeline.
firestore.rules
rules_version = '2';
service cloud.firestore {
match /databases/{database}/documents {
function isAdmin() {
return request.auth != null &&
request.auth.token.email == 'tripathilokesh2608@gmail.com';
}
function isLoggedIn() {
return request.auth != null;
}
// WAITLIST (admin can view all)
match /waitlist/{email} {
allow read: if isAdmin();
allow write: if isLoggedIn();
}
// OTP (temporary access)
match /otps/{email} {
allow read, write: if isLoggedIn();
}
// LEADS
match /leads/{leadId} {
// Admin full control
allow read, write: if isAdmin();
// Partner create
allow create: if isLoggedIn();
// Partner read own leads only (temporary due to anonymous auth)
allow read: if isLoggedIn();
// No updates from partner
allow update, delete: if false;
}
}
}