Sprankelprachtig aan/afmeldsysteem

dashboard_controller.rb 249B

123456789
  1. class DashboardController < ApplicationController
  2. before_action :require_login!
  3. def home
  4. @user_organized = current_person.activities.where(is_organizer: true)
  5. @need_response = current_person.activities.includes(:participants)
  6. end
  7. end