summaryrefslogtreecommitdiff
path: root/app/controllers/admin_controller.rb
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2026-07-17 17:52:08 +0200
committererdgeist <erdgeist@erdgeist.org>2026-07-17 17:52:08 +0200
commitda5bb5788802c725f9f14b72e6a54c6c38ea5e0a (patch)
tree0899d99ca83dcc89f0f45dfd84af6ae46328cfa4 /app/controllers/admin_controller.rb
parentea3f24f7376b1eb79b461d25765ed355278d700e (diff)
Retire recent changes widget, replace with action log
Diffstat (limited to 'app/controllers/admin_controller.rb')
-rw-r--r--app/controllers/admin_controller.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/app/controllers/admin_controller.rb b/app/controllers/admin_controller.rb
index 40cfbdc..8bd99ac 100644
--- a/app/controllers/admin_controller.rb
+++ b/app/controllers/admin_controller.rb
@@ -6,7 +6,6 @@ class AdminController < ApplicationController
6 6
7 def index 7 def index
8 @drafts = Node.drafts_and_autosaves(current_user_id: current_user.id).limit(5) 8 @drafts = Node.drafts_and_autosaves(current_user_id: current_user.id).limit(5)
9 @recent_changes = Node.recently_changed.limit(5)
10 @actions = NodeAction.order(:occurred_at => :desc, :id => :desc).limit(5) 9 @actions = NodeAction.order(:occurred_at => :desc, :id => :desc).limit(5)
11 end 10 end
12 11