Sha256: 3f09836aa5de98e5139c5b0ce7a1ef6c93bcdf9550856d64fbb000b418fa8377
Contents?: true
Size: 1.14 KB
Versions: 2
Compression:
Stored size: 1.14 KB
Contents
module AuditRails class Audit < ActiveRecord::Base def self.needs_attr_accessible? Rails::VERSION::MAJOR == 3 end if needs_attr_accessible? attr_accessible :action, :controller, :description, :user_name end # Supports both string and date format of range given scope :in_range, ->(range_begin, range_end){ if range_end.blank? || range_end.blank? range_begin, range_end = '1970-01-01', Time.now end where(created_at: range_begin.to_date.beginning_of_day..range_end.to_date.end_of_day) } scope :reverse_chronological, ->{order('created_at DESC')} scope :group_by_controller_action, ->{group([:controller, :action])} scope :group_by_user_name, ->{group('user_name')} def self.no_audit_entry_for_today?(action_name, user_name) audits = where(action: action_name, user_name: user_name, created_at: Time.now.to_date.beginning_of_day..Time.now.to_date.end_of_day) audits.blank? end def self.analysis_by_user_name group_by_user_name.count end def self.analysis_by_page_views group_by_controller_action.count end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
audit_rails-1.1.10 | app/models/audit_rails/audit.rb |
audit_rails-1.1.9 | app/models/audit_rails/audit.rb |