Sha256: c13b109c4fa4e55d7864a840bfafa294493a6185488bce3ec632841da629c9da
Contents?: true
Size: 1.22 KB
Versions: 3
Compression:
Stored size: 1.22 KB
Contents
module Admin class LogsController < ApplicationController respond_to?(:before_action) ? before_action(:authenticate_user!) : before_filter(:authenticate_user!) # Devise layout (EffectiveLogging.layout.kind_of?(Hash) ? EffectiveLogging.layout[:admin_logs] : EffectiveLogging.layout) skip_log_page_views quiet: true helper EffectiveLoggingHelper def index @datatable = Effective::Datatables::Logs.new() @page_title = 'Logs' EffectiveLogging.authorized?(self, :index, Effective::Log) EffectiveLogging.authorized?(self, :admin, :effective_logging) end def show @log = Effective::Log.includes(:logs).find(params[:id]) @log.next_log = Effective::Log.unscoped.order(:id).where(parent_id: @log.parent_id).where('id > ?', @log.id).first @log.prev_log = Effective::Log.unscoped.order(:id).where(parent_id: @log.parent_id).where('id < ?', @log.id).last @page_title = "Log ##{@log.to_param}" if @log.logs.present? @log.datatable = Effective::Datatables::Logs.new(log_id: @log.id) if defined?(EffectiveDatatables) end EffectiveLogging.authorized?(self, :show, @log) EffectiveLogging.authorized?(self, :admin, :effective_logging) end end end
Version data entries
3 entries across 3 versions & 1 rubygems