14 lines
278 B
Ruby
Executable File
14 lines
278 B
Ruby
Executable File
class MacLogsController < ApplicationController
|
|
load_and_authorize_resource :mac_log
|
|
before_filter :authenticate_user!
|
|
|
|
def index
|
|
@mac_logs = MacLog.desc.limit(1000)
|
|
@macs = {}
|
|
@mac_logs.each do |log|
|
|
@macs.merge!({log.mac => Mac.find_by_mac(log.mac)})
|
|
end
|
|
end
|
|
|
|
end
|