Total Complexity | 2 |
Total Lines | 13 |
Duplicated Lines | 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 | |||
10 | def map |
||
11 | |||
12 | end |
||
13 | end |
||
14 |