zammad/app/controllers/http_logs_controller.rb

21 lines
515 B
Ruby
Raw Permalink Normal View History

# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
2016-04-18 00:02:31 +00:00
class HttpLogsController < ApplicationController
prepend_before_action :authenticate_and_authorize!
2016-04-18 00:02:31 +00:00
# GET /http_logs/:facility
def index
list = HttpLogPolicy::Scope.new(current_user, HttpLog)
.resolve(facility: params[:facility])
.reorder(created_at: :desc).limit(params[:limit] || 50)
2016-04-18 00:02:31 +00:00
model_index_render_result(list)
end
# POST /http_logs
def create
model_create_render(HttpLog, params)
end
end