Sha256: 5eb074d41fe927a1c3708488aae7d5dd2bdabc191dfe0ab170c276badeb2399d
Contents?: true
Size: 663 Bytes
Versions: 6
Compression:
Stored size: 663 Bytes
Contents
# frozen_string_literal: true module ExceptionTrack class LogsController < ActionController::Base layout "exception-track/application" before_action :set_log, only: %i[show destroy] # GET /exception_logs def index @logs = Log.order("id desc").page(params[:page]).per(15) end # GET /exception_logs/1 def show; end # DELETE /exception_logs/all def all Log.delete_all redirect_to logs_url, notice: "Logs was successfully destroyed." end private # Use callbacks to share common setup or constraints between actions. def set_log @log = Log.find(params[:id]) end end end
Version data entries
6 entries across 6 versions & 1 rubygems