Skip to content

Commit

Permalink
filter analyses to real ones
Browse files Browse the repository at this point in the history
  • Loading branch information
drusepth committed Oct 3, 2020
1 parent 05bdff2 commit ed04d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/jobs/end_of_day_analytics_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def perform(*args)
# Documents
report.documents_created = Document.where(created_at: timespan).count
report.documents_edited = Document.where(updated_at: timespan).count
report.document_analyses_created = DocumentAnalysis.where(created_at: timespan).count
report.document_analyses_created = DocumentAnalysis.where(created_at: timespan, progress: 100).count

# Timelines
report.timelines_created = Timeline.where(created_at: timespan).count
Expand Down

0 comments on commit ed04d64

Please sign in to comment.