38 lines
855 B
Ruby
38 lines
855 B
Ruby
class DoorLogsController < ApplicationController
|
|
authorize_resource :except => :auto_download
|
|
before_filter :authenticate_user!, :except => :auto_download
|
|
|
|
# GET /door_logs
|
|
# GET /door_logs.json
|
|
def index
|
|
@door_logs = DoorLog.find(:all, :order => "created_at DESC", :limit => 500)
|
|
|
|
respond_to do |format|
|
|
format.html # index.html.erb
|
|
format.json { render :json => @door_logs }
|
|
end
|
|
end
|
|
|
|
# GET /door_logs/download
|
|
def download
|
|
@results = DoorLog.download_from_door
|
|
|
|
respond_to do |format|
|
|
format.html # show.html.erb
|
|
format.json { render :json => @results }
|
|
end
|
|
end
|
|
|
|
# GET /door_logs/auto_download
|
|
def auto_download
|
|
@results = DoorLog.download_from_door
|
|
|
|
respond_to do |format|
|
|
format.html # show.html.erb
|
|
format.json { render :json => @results }
|
|
end
|
|
end
|
|
|
|
|
|
end
|