rubyberlin/cfp-app

View on GitHub
app/controllers/staff/grids_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Staff::GridsController < Staff::ApplicationController
  include ScheduleSupport

  def show
    @schedule = Schedule.new(current_event)
    @counts = EventStats.new(current_event).schedule_counts
    @sessions = current_event.program_sessions
    @unscheduled_sessions = @sessions.unscheduled
  end
end