From 190daaa8a0bb79e750894b83e31b9d99f7d900a4 Mon Sep 17 00:00:00 2001 From: erdgeist Date: Thu, 16 Jul 2026 03:30:01 +0200 Subject: Add a reader for the action log at admin/log NodeActionsController#index lists entries newest-first, filterable by node_id or user_id -- the two zoom shapes the log was designed around. Rendering goes through NodeActionsHelper.action_summary, which builds one sentence per entry from metadata alone, so entries referencing deleted users or nodes render from their snapshots; live associations only upgrade names to links. Unknown verbs degrade to a generic sentence rather than an error, since the log outlives its vocabulary. The helper is the escaping boundary: every metadata value passes through h() before assembly. Actor names link to the log's own user zoom rather than the unused users page -- inspecting a suspicious user's other actions is the intended workflow. Publish entries with a translation_diff expose a collapsed per-locale change table linking out to the revision itself. Sentences live in en.yml/de.yml following the existing widget-string convention. nodes#show links to its node's zoomed log. --- app/controllers/node_actions_controller.rb | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/controllers/node_actions_controller.rb (limited to 'app/controllers/node_actions_controller.rb') diff --git a/app/controllers/node_actions_controller.rb b/app/controllers/node_actions_controller.rb new file mode 100644 index 0000000..6e46719 --- /dev/null +++ b/app/controllers/node_actions_controller.rb @@ -0,0 +1,14 @@ +class NodeActionsController < ApplicationController + + before_action :login_required + + layout 'admin' + + def index + @actions = NodeAction.order(:occurred_at => :desc, :id => :desc) + @actions = @actions.where(:node_id => params[:node_id]) if params[:node_id].present? + @actions = @actions.where(:user_id => params[:user_id]) if params[:user_id].present? + @actions = @actions.includes(:node, :user) + .paginate(:page => params[:page], :per_page => 50) + end +end -- cgit v1.3