Skip to content

Commit

Permalink
core: remove min duration ms analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
ramiroaisen committed Dec 26, 2023
1 parent d38184e commit 05fa11e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion rs/packages/api/src/routes/analytics/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,8 @@ pub mod get {
os,
browser,
domain,
min_duration_ms: Some(min_duration_ms.unwrap_or(5_000)),
// min_duration_ms: Some(min_duration_ms.unwrap_or(5_000)),
min_duration_ms,
};

let analytics = analytics::get_analytics(query).await?;
Expand Down
3 changes: 2 additions & 1 deletion rs/packages/api/src/routes/app_analytics/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,8 @@ pub mod get {
// domain,
app_kind,
app_version,
min_duration_ms: Some(min_duration_ms.unwrap_or(5_000)),
// min_duration_ms: Some(min_duration_ms.unwrap_or(5_000)),
min_duration_ms,
};

let analytics = app_analytics::get_analytics(query).await?;
Expand Down

0 comments on commit 05fa11e

Please sign in to comment.