Class: SystemController

Inherits:
ApplicationController show all
Defined in:
app/controllers/system_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#robot?

Instance Method Details

#indexObject



3
4
5
6
7
8
9
10
# File 'app/controllers/system_controller.rb', line 3

def index
  @current_user = current_user

  respond_to do |format|
    format.html # index.html.erb
    format.xml { render :xml => @effort_logs }
  end
end