2016-04-18 00:02:31 +00:00
|
|
|
# Copyright (C) 2012-2014 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
|
|
|
class HttpLogsController < ApplicationController
|
|
|
|
before_action :authentication_check
|
|
|
|
|
|
|
|
# GET /http_logs/:facility
|
|
|
|
def index
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.*')
|
2016-04-18 00:02:31 +00:00
|
|
|
list = if params[:facility]
|
|
|
|
HttpLog.where(facility: params[:facility]).order('created_at DESC').limit(params[:limit] || 50)
|
|
|
|
else
|
|
|
|
HttpLog.order('created_at DESC').limit(params[:limit] || 50)
|
|
|
|
end
|
|
|
|
model_index_render_result(list)
|
|
|
|
end
|
|
|
|
|
|
|
|
# POST /http_logs
|
|
|
|
def create
|
2016-08-12 16:39:09 +00:00
|
|
|
permission_check('admin.*')
|
2016-04-18 00:02:31 +00:00
|
|
|
model_create_render(HttpLog, params)
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|