audited icon indicating copy to clipboard operation
audited copied to clipboard

Support method symbols in max_audits

Open gathuku opened this issue 2 years ago • 1 comments

Allow passing a method symbol to max_audits for dynamic maximum audits

Example

class User < ApplicationRecord
  audited max_audits: :max 
  
  private 
  
  def max
    self.maximum_audits || 10
  end
end

gathuku avatar Dec 05 '21 13:12 gathuku

@fractaledmind Thank you for the good review

gathuku avatar Dec 05 '21 15:12 gathuku