Skip to content

Commit dc52f1f

Browse files
committed
🐛(metrics) remove mailbox.id in metrics
This was a useless field for our remote scraper
1 parent 6e0b213 commit dc52f1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/backend/core/api/viewsets/metrics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def get(self, request):
348348
for mailbox in queryset:
349349
email = f"{mailbox.local_part}@{mailbox.domain.name}"
350350
result = {
351-
"account": {"type": "mailbox", "id": email, "email": email},
351+
"account": {"type": "mailbox", "email": email},
352352
"metrics": {"storage_used": mailbox.storage_used},
353353
}
354354
if custom_attr_key:

0 commit comments

Comments
 (0)