izumin5210/actopus

View on GitHub
app/controllers/staffs/home_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Staffs::HomeController < Staffs::BaseController
  def home
    @reschedulings = Rescheduling.available.includes(
        lecture: [:lecturers, :klass],
        before_date_period: [:period],
        after_date_period: [:period]
      )
  end
end