class AuditOverriderDecorator < ApplicationDecorator
  def action_title
    case action.to_sym
    when :create
      'Added'
    when :update
      'Updated'
    when :destroy
      'Deleted'
    end
  end
end
