summaryrefslogtreecommitdiff
path: root/app/controllers/my/dashboard_controller.rb
blob: c3e551bc779d2162253b94fca2e0487009699a3b (plain)
1
2
3
4
5
6
7
8
9
module My
  class DashboardController < BaseController
    def index
      @cakes = current_user.creations.includes(:photos).limit(6)
      @tutorials = current_user.tutorials.limit(10)
      @activities = current_user.recent_activities
    end
  end
end