Conditions | 1 |
Total Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | class PagesController < ApplicationController |
||
2 | def home |
||
3 | @current_event = Event.current_event |
||
4 | @recent_sessions = @current_event ? @current_event.sessions.unscheduled.limit(4).recent : [] |
||
5 | @random_sessions = @current_event ? @current_event.sessions.unscheduled.limit(6).random_order : [] |
||
6 | |||
7 | @categories = Category.all.order('id') |
||
8 | end |
||
9 | |||
14 |