panterch/ananas

View on GitHub
app/controllers/dashboard_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DashboardController  < InheritedResources::Base
  belongs_to :mentor

  # Authorization
  load_and_authorize_resource :rating

  def index
    @events_to_rate = Event.attended_by(current_user).passed.unrated
  end
end