feat(analytics): added dispute as uri param to analytics info api (#3693)

This commit is contained in:
harsh-sharma-juspay
2024-02-19 18:14:51 +05:30
committed by GitHub
parent e0d8bb207e
commit 76ac1a753a
7 changed files with 86 additions and 1 deletions

View File

@ -445,6 +445,7 @@ impl ToSql<SqlxClient> for AnalyticsCollection {
.attach_printable("ConnectorEvents table is not implemented for Sqlx"))?,
Self::OutgoingWebhookEvent => Err(error_stack::report!(ParsingError::UnknownError)
.attach_printable("OutgoingWebhookEvents table is not implemented for Sqlx"))?,
Self::Dispute => Ok("dispute".to_string()),
}
}
}