Class: Applicants::Panel

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/applicants/panel.rb

Instance Method Summary collapse

Instance Method Details

#statisticsObject



9
10
11
12
13
14
# File 'app/models/applicants/panel.rb', line 9

def statistics
  {
    applicants_submitted_video_for_approval: applicants..count,
    applicants_approved: applicants.with_state(:approved).count
  }
end