Is it possible to delete audit log from the back-end?
Not from the interface. You could run RAILS_ENV=production bundle exec rails c
and run something like Admin::ActionLog.delete_all
to delete all entries.
1 Like